Files
aggregate_translate_adminui/plop-templates/view/index.hbs
hucan bc67220ef1
Some checks failed
GitHub Actions Mirror / mirror_to_gitee (push) Has been cancelled
GitHub Actions Mirror / mirror_to_gitlab (push) Has been cancelled
build / build (10.x) (push) Has been cancelled
build / build (12.x) (push) Has been cancelled
ss
2025-06-29 00:40:17 +08:00

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}}