tiny-vue/examples/sites/demos/pc/app/anchor/basic-usage-composition-api...

57 lines
1.0 KiB
Vue

<template>
<div class="demo-top mb10">
<tiny-switch v-model="type" true-value="line" false-value="dot"> </tiny-switch>
<span>当前类型:{{ type }}</span>
</div>
<tiny-anchor :links="links" :type="type"></tiny-anchor>
</template>
<script setup>
import { ref } from 'vue'
import { Anchor as TinyAnchor, Switch as TinySwitch } from '@opentiny/vue'
const links = ref([
{
key: 'demonstrate',
link: '#demonstrate',
title: '演示',
children: [
{
key: 'basic-usage',
link: '#basic-usage',
title: '基本用法'
},
{
key: 'is-affix',
link: '#is-affix',
title: '固定模式'
},
{
key: 'set-container',
link: '#set-container',
title: '滚动容器'
},
{
key: 'on-change',
link: '#change',
title: 'change 事件'
}
]
},
{
key: 'api',
link: '#API',
title: 'API'
}
])
const type = ref('dot')
</script>
<style scoped>
.demo-top {
display: flex;
align-items: center;
}
</style>