You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
302 B

  1. {{#if template}}
  2. <template>
  3. <div />
  4. </template>
  5. {{/if}}
  6. {{#if script}}
  7. <script>
  8. export default {
  9. name: '{{ properCase name }}',
  10. props: {},
  11. data() {
  12. return {}
  13. },
  14. created() {},
  15. mounted() {},
  16. methods: {}
  17. }
  18. </script>
  19. {{/if}}
  20. {{#if style}}
  21. <style lang="scss" scoped>
  22. </style>
  23. {{/if}}