forked from opentiny/tiny-vue
57 lines
1.1 KiB
Vue
57 lines
1.1 KiB
Vue
<template>
|
|
<tiny-anchor :links="links" @change="handleChange"></tiny-anchor>
|
|
</template>
|
|
|
|
<script>
|
|
import { Anchor, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyAnchor: Anchor
|
|
},
|
|
data() {
|
|
return {
|
|
links: [
|
|
{
|
|
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'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
handleChange(link) {
|
|
Modal.message({ message: `change${link}`, status: 'info' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|