index.hbs 253 B

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