Introduce the new Vue admin project into version control while tightening gitignore patterns to keep env files, logs, build artifacts, and test outputs out of commits. Made-with: Cursor
27 lines
302 B
Handlebars
Executable File
27 lines
302 B
Handlebars
Executable File
{{#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}}
|