tiny-vue_version0/examples/sites/demos/pc/app/bulletin-board/route.vue

28 lines
488 B
Vue

<template>
<tiny-bulletin-board :tab-title="tabTitle" :data="data"></tiny-bulletin-board>
</template>
<script lang="jsx">
import { BulletinBoard } from '@opentiny/vue'
export default {
components: {
TinyBulletinBoard: BulletinBoard
},
data() {
return {
tabTitle: ['页面跳转'],
data: [
[
{
text: '基于 route',
date: '2019-06-11',
route: '#/Alert'
}
]
]
}
}
}
</script>