index.hbs 408 B

12345678910111213141516171819202122232425262728293031323334
  1. {{#if template}}
  2. <template lang="pug">
  3. div.comp
  4. </template>
  5. {{/if}}
  6. {{#if script}}
  7. <script>
  8. export default {
  9. name: 'comp-{{ properCase name }}',
  10. props: {},
  11. data() {
  12. return {
  13. }
  14. },
  15. computed: {},
  16. watch: {},
  17. filters: {},
  18. created() { },
  19. mounted() { },
  20. methods: {
  21. },
  22. }
  23. </script>
  24. {{/if}}
  25. {{#if style}}
  26. <style lang="stylus" scoped>
  27. </style>
  28. {{/if}}