index.hbs 378 B

1234567891011121314151617181920
  1. <script setup lang="ts">
  2. import { ElButton } from 'element-plus'
  3. import { useI18n } from '@/hooks/web/useI18n'
  4. import { ref } from 'vue'
  5. defineOptions({
  6. name: '{{ upperFirstName }}',
  7. components: {
  8. ElButton
  9. },
  10. setup() {}
  11. })
  12. const { t } = useI18n()
  13. </script>
  14. <template>
  15. <ContentWrap>
  16. <ElButton type="primary">{{ name }}</ElButton>
  17. </ContentWrap>
  18. </template>