tiny-vue/examples/sites/demos/pc/app/guide/offset-composition-api.vue

97 lines
3.0 KiB
Vue

<template>
<div>
<tiny-alert class="demo-guide-offset" :closable="false" description="type 为默认值 info。"></tiny-alert>
<tiny-button plain @click="stepStartDefault">默认</tiny-button>
<tiny-button plain @click="stepStartMainAxis">纵轴偏移 50px</tiny-button>
<tiny-button plain @click="stepStartCrossAxis">横轴偏移 50px</tiny-button>
<tiny-button plain @click="stepStartAlignmentAxis">对齐轴偏移 50px</tiny-button>
<tiny-guide :show-step="showStepDefault" :dom-data="domDataDefault"></tiny-guide>
<tiny-guide :show-step="showStepMainAxis" :dom-data="domDataMainAxis" :main-axis="50"></tiny-guide>
<tiny-guide :show-step="showStepCrossAxis" :dom-data="domDataCrossAxis" :cross-axis="50"></tiny-guide>
<tiny-guide
:show-step="showStepAlignmentAxis"
:dom-data="domDataAlignmentAxis"
:alignment-axis="50"
pop-position="bottom-start"
></tiny-guide>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { Guide as TinyGuide, Button as TinyButton, Alert as TinyAlert } from '@opentiny/vue'
const showStepDefault = ref(false)
const showStepMainAxis = ref(false)
const showStepCrossAxis = ref(false)
const showStepAlignmentAxis = ref(false)
const domDataDefault = ref([
{
title: '新手引导标题1',
text: '这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案',
domElement: '.demo-guide-offset',
button: [
{
text: '完成',
action: 'complete'
}
]
}
])
const domDataMainAxis = ref([
{
title: '新手引导标题2',
text: '这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案',
domElement: '.demo-guide-offset',
button: [
{
text: '完成',
action: 'complete'
}
]
}
])
const domDataCrossAxis = ref([
{
title: '新手引导标题3',
text: '这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案',
domElement: '.demo-guide-offset',
button: [
{
text: '完成',
action: 'complete'
}
]
}
])
const domDataAlignmentAxis = ref([
{
title: '新手引导标题4',
text: '这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案这里是新手引导文案',
domElement: '.demo-guide-offset',
button: [
{
text: '完成',
action: 'complete'
}
]
}
])
function stepStartDefault() {
showStepDefault.value = !showStepDefault.value
}
function stepStartMainAxis() {
showStepMainAxis.value = !showStepMainAxis.value
}
function stepStartCrossAxis() {
showStepCrossAxis.value = !showStepCrossAxis.value
}
function stepStartAlignmentAxis() {
showStepAlignmentAxis.value = !showStepAlignmentAxis.value
}
</script>