70 lines
2.5 KiB
Vue
70 lines
2.5 KiB
Vue
<template>
|
|
<Tag>标签一</Tag>
|
|
<Tag>标签二</Tag>
|
|
<Tag closable>标签三</Tag>
|
|
<Tag closable color="blue">标签一</Tag>
|
|
<Tag closable color="green">标签二</Tag>
|
|
<Tag closable color="red">标签三</Tag>
|
|
<Tag closable color="yellow">标签四</Tag>
|
|
<br><br>
|
|
<Tag type="dot">标签一</Tag>
|
|
<Tag type="dot" closable>标签一</Tag>
|
|
<Tag type="dot" color="blue">标签一</Tag>
|
|
<Tag type="dot" color="blue" closable>标签一</Tag>
|
|
<Tag type="dot" color="green">标签一</Tag>
|
|
<Tag type="dot" color="green" closable>标签一</Tag>
|
|
<Tag type="dot" color="red">标签一</Tag>
|
|
<Tag type="dot" color="red" closable>标签一</Tag>
|
|
<Tag type="dot" color="yellow">标签一</Tag>
|
|
<Tag type="dot" color="yellow" closable>标签一</Tag>
|
|
<br><br>
|
|
<Tag type="border">标签一</Tag>
|
|
<Tag type="border" closable>标签一</Tag>
|
|
<Tag type="border" color="blue">标签一</Tag>
|
|
<Tag type="border" color="blue" closable>标签一</Tag>
|
|
<Tag type="border" color="green">标签一</Tag>
|
|
<Tag type="border" color="green" closable>标签一</Tag>
|
|
<Tag type="border" color="red">标签一</Tag>
|
|
<Tag type="border" color="red" closable>标签一</Tag>
|
|
<Tag type="border" color="yellow">标签一</Tag>
|
|
<Tag type="border" color="yellow" closable>标签一</Tag>
|
|
<i-button type="primary" @click="modal1 = true">显示对话框</i-button>
|
|
<Modal
|
|
:visible.sync="modal1"
|
|
title="普通的Modal对话框标题"
|
|
:loading="loading" @on-ok="ok">
|
|
<p>对话框内容</p>
|
|
<p>对话框内容</p>
|
|
<p>对话框内容</p>
|
|
{{ loading }}
|
|
<i-button @click="loading = true">true</i-button>
|
|
<i-button @click="loading = false">false</i-button>
|
|
</Modal>
|
|
<br><br>
|
|
<Tag type="border" color="yellow" closable @click="clickTag" @on-close="clickTagClose">标签一</Tag>
|
|
</template>
|
|
<script>
|
|
import { Tag, Modal, iButton } from 'iview';
|
|
export default {
|
|
components: { Tag, Modal, iButton },
|
|
data () {
|
|
return {
|
|
modal1: false,
|
|
loading: true
|
|
}
|
|
},
|
|
methods: {
|
|
ok () {
|
|
setTimeout(() => {
|
|
this.modal1 = false;
|
|
}, 2000);
|
|
},
|
|
clickTag() {
|
|
console.log('click tag');
|
|
},
|
|
clickTagClose() {
|
|
console.log('click tag close-icon');
|
|
}
|
|
}
|
|
}
|
|
</script>
|