parent
eb206b0cc3
commit
dbf3b0f5a3
@ -0,0 +1,33 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { ContentWrap } from '@/components/ContentWrap'
|
||||||
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
|
import { Infotip } from '@/components/Infotip'
|
||||||
|
|
||||||
|
const { t } = useI18n()
|
||||||
|
|
||||||
|
const keyClick = (key: string) => {
|
||||||
|
if (key === t('iconDemo.accessAddress')) {
|
||||||
|
window.open('https://iconify.design/')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<ContentWrap :title="t('infotipDemo.infotip')" :message="t('infotipDemo.infotipDes')">
|
||||||
|
<Infotip
|
||||||
|
:show-index="false"
|
||||||
|
:title="`${t('iconDemo.recommendedUse')}${t('iconDemo.iconify')}`"
|
||||||
|
:schema="[
|
||||||
|
{
|
||||||
|
label: t('iconDemo.recommendeDes'),
|
||||||
|
keys: ['Iconify']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('iconDemo.accessAddress'),
|
||||||
|
keys: [t('iconDemo.accessAddress')]
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
@click="keyClick"
|
||||||
|
/>
|
||||||
|
</ContentWrap>
|
||||||
|
</template>
|
||||||
@ -1,10 +1,16 @@
|
|||||||
<script setup lang="ts" name="Menu111">
|
<script setup lang="ts" name="Menu111">
|
||||||
import { onMounted } from 'vue'
|
import { ElInput } from 'element-plus'
|
||||||
onMounted(() => {
|
import { ContentWrap } from '@/components/ContentWrap'
|
||||||
console.log('????')
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
})
|
import { ref } from 'vue'
|
||||||
|
|
||||||
|
const { t } = useI18n()
|
||||||
|
|
||||||
|
const text = ref('')
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="h-[100000px]">Menu111 <input type="text" /></div>
|
<ContentWrap :title="t('levelDemo.menu')">
|
||||||
|
<div class="flex items-center"> Menu111: <ElInput v-model="text" class="pl-20px" /> </div>
|
||||||
|
</ContentWrap>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -1,5 +1,16 @@
|
|||||||
<script setup lang="ts"></script>
|
<script setup lang="ts" name="Menu12">
|
||||||
|
import { ElInput } from 'element-plus'
|
||||||
|
import { ContentWrap } from '@/components/ContentWrap'
|
||||||
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
|
import { ref } from 'vue'
|
||||||
|
|
||||||
|
const { t } = useI18n()
|
||||||
|
|
||||||
|
const text = ref('')
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div>Menu12 <input type="text" /></div>
|
<ContentWrap :title="t('levelDemo.menu')">
|
||||||
|
<div class="flex items-center"> Menu12: <ElInput v-model="text" class="pl-20px" /> </div>
|
||||||
|
</ContentWrap>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -1,5 +1,16 @@
|
|||||||
<script setup lang="ts"></script>
|
<script setup lang="ts" name="Menu2">
|
||||||
|
import { ElInput } from 'element-plus'
|
||||||
|
import { ContentWrap } from '@/components/ContentWrap'
|
||||||
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
|
import { ref } from 'vue'
|
||||||
|
|
||||||
|
const { t } = useI18n()
|
||||||
|
|
||||||
|
const text = ref('')
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div>Menu2 <input type="text" /></div>
|
<ContentWrap :title="t('levelDemo.menu')">
|
||||||
|
<div class="flex items-center"> Menu2: <ElInput v-model="text" class="pl-20px" /> </div>
|
||||||
|
</ContentWrap>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
Reference in New Issue