1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <script setup lang="ts">
| import { ElInput } from 'element-plus'
| import { ContentWrap } from '@/components/ContentWrap'
| import { useI18n } from '@/hooks/web/useI18n'
| import { ref } from 'vue'
|
| defineOptions({
| name: 'Menu111'
| })
|
| const { t } = useI18n()
|
| const text = ref('')
| </script>
|
| <template>
| <ContentWrap :title="t('levelDemo.menu')">
| <div class="flex items-center"> Menu111: <ElInput v-model="text" class="pl-20px" /> </div>
| </ContentWrap>
| </template>
|
|