chore: remove .hbs file submission check
parent
28530b2744
commit
87d3078941
@ -1,11 +1,20 @@
|
|||||||
<script setup lang='ts'>
|
<script setup lang="ts">
|
||||||
import { ElButton } from 'element-plus' import { useI18n } from '@/hooks/web/useI18n' import { ref
|
import { ElButton } from 'element-plus'
|
||||||
} from 'vue' defineOptions({ name: '{{upperFirstName}}', components: { ElButton }, setup() {} })
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
const { t } = useI18n()
|
import { ref } from 'vue'
|
||||||
|
|
||||||
|
defineOptions({
|
||||||
|
name: '{{ upperFirstName }}',
|
||||||
|
components: {
|
||||||
|
ElButton
|
||||||
|
},
|
||||||
|
setup() {}
|
||||||
|
})
|
||||||
|
const { t } = useI18n()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<ElButton type='primary'>{{name}}</ElButton>
|
<ElButton type="primary">{{ name }}</ElButton>
|
||||||
</ContentWrap>
|
</ContentWrap>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
Reference in New Issue