feat:add seo,learning page can be directly studied through the url

This commit is contained in:
zyronon
2025-08-18 02:13:41 +08:00
parent d1443fc6e9
commit 1ce13a7cbb
20 changed files with 238 additions and 110 deletions

View File

@@ -49,11 +49,23 @@ defineExpose({play})
</script>
<template>
<BaseIcon @click.stop="click"
v-if="props.simple"
no-bg
:icon="iconList[step]"/>
<BaseIcon @click.stop="click" v-else :icon="iconList[step]"/>
<template v-if="props.simple">
<BaseIcon @click.stop="click"
no-bg
>
<IconBxVolume v-if="step === 0"/>
<IconBxVolumeLow v-if="step === 1"/>
<IconBxVolumeFull v-if="step === 2"/>
</BaseIcon>
</template>
<template v-else>
<BaseIcon @click.stop="click"
>
<IconBxVolume v-if="step === 0"/>
<IconBxVolumeLow v-if="step === 1"/>
<IconBxVolumeFull v-if="step === 2"/>
</BaseIcon>
</template>
</template>
<style scoped lang="scss">