gohttpdUi/plop/template/newModule/index.hbs

21 lines
378 B
Handlebars
Raw Normal View History

<script setup lang="ts">
import { ElButton } from 'element-plus'
import { useI18n } from '@/hooks/web/useI18n'
import { ref } from 'vue'
defineOptions({
name: '{{ upperFirstName }}',
components: {
ElButton
},
setup() {}
})
const { t } = useI18n()
2022-03-27 10:09:35 +08:00
</script>
<template>
<ContentWrap>
<ElButton type="primary">{{ name }}</ElButton>
2022-03-27 10:09:35 +08:00
</ContentWrap>
</template>