2022-03-27 10:23:46 +08:00
|
|
|
<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>
|
2022-03-27 10:23:46 +08:00
|
|
|
<ElButton type="primary">{{ name }}</ElButton>
|
2022-03-27 10:09:35 +08:00
|
|
|
</ContentWrap>
|
2022-03-27 10:23:46 +08:00
|
|
|
</template>
|