forked from opentiny/tiny-vue
65 lines
1.9 KiB
Vue
65 lines
1.9 KiB
Vue
<template>
|
||
<div>
|
||
<tiny-button @click="handleClick">改变标题</tiny-button>
|
||
<tiny-tabs v-model="activeName">
|
||
<tiny-tab-item name="first">
|
||
<template #title>
|
||
<div class="slot-content">
|
||
<icon-calendar style="vertical-align: top" class="tiny-svg-size"></icon-calendar>
|
||
<span class="slot-message">表单组件</span>
|
||
</div>
|
||
</template>
|
||
<div>表单组件,具有与用户交互,并可完成数据采集功能的控件。</div>
|
||
</tiny-tab-item>
|
||
<tiny-tab-item name="second">
|
||
<template #title>
|
||
<div class="slot-content">
|
||
<icon-replies style="fill: red; vertical-align: top" class="tiny-svg-size"></icon-replies>
|
||
<span class="slot-message">数据组件</span>
|
||
</div>
|
||
</template>
|
||
<div>数据组件,提供了非常强大数据表格功能,在Grid可以展示数据列表,可以对数据列表进行选择、编辑等</div>
|
||
</tiny-tab-item>
|
||
<tiny-tab-item :title="title" name="third"> 导航组件,帮助网站访问者浏览站点的组件. </tiny-tab-item>
|
||
<tiny-tab-item title="业务组件" name="fourth"> 业务组件,与业务紧密相关实现某种业务功能的组件集 </tiny-tab-item>
|
||
</tiny-tabs>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { Tabs, TabItem, Button } from '@opentiny/vue'
|
||
import { IconCalendar, IconReplies } from '@opentiny/vue-icon'
|
||
|
||
export default {
|
||
components: {
|
||
TinyTabs: Tabs,
|
||
TinyTabItem: TabItem,
|
||
IconCalendar: IconCalendar(),
|
||
IconReplies: IconReplies(),
|
||
TinyButton: Button
|
||
},
|
||
data() {
|
||
return {
|
||
activeName: 'second',
|
||
title: '导航组件',
|
||
count: 1
|
||
}
|
||
},
|
||
methods: {
|
||
handleClick() {
|
||
this.title = '导航组件' + this.count++
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.slot-content {
|
||
height: 16px;
|
||
line-height: 16px;
|
||
}
|
||
.slot-message {
|
||
display: inline-block;
|
||
}
|
||
</style>
|