index.hbs 221 B

12345678910111213141516
  1. <template>
  2. <div></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: "{{ properCase name }}",
  7. props: {},
  8. data() {
  9. return {};
  10. },
  11. created() {},
  12. mounted() {},
  13. methods: {},
  14. };
  15. </script>