27 lines
302 B
Handlebars
27 lines
302 B
Handlebars
|
{{#if template}}
|
||
|
<template>
|
||
|
<div />
|
||
|
</template>
|
||
|
{{/if}}
|
||
|
|
||
|
{{#if script}}
|
||
|
<script>
|
||
|
export default {
|
||
|
name: '{{ properCase name }}',
|
||
|
props: {},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
created() {},
|
||
|
mounted() {},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
{{/if}}
|
||
|
|
||
|
{{#if style}}
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
</style>
|
||
|
{{/if}}
|