# 弹出提示
使用Toast组件,首先需要引入组件,使用Vue提供的引入插件的方法。
插件原理为Vue.prototype.toast = function(...){...}。
# 预览
# 使用方法
<template>
<div>
<xin-button @click="onClickButton1">2s自动关闭</xin-button>
<xin-button @click="onClickButton2">点击才关闭</xin-button>
<xin-button @click="onClickButton3">支持 HTML</xin-button>
<xin-button @click="onClickButton4">支持 回调</xin-button>
<br><br>
<xin-button @click="onClickButton5">左侧弹出</xin-button>
<xin-button @click="onClickButton6">上方弹出</xin-button>
<xin-button @click="onClickButton7">中部弹出</xin-button>
<xin-button @click="onClickButton8">下方弹出</xin-button>
<xin-button @click="onClickButton9">右侧弹出</xin-button>
</div>
</template>
<script>
import Vue from 'vue'
import Button from "../../../src/button.vue";
import Toast from "../../../src/toast.vue";
import plugin from "../../../src/plugin";
Vue.use(plugin)
export default {
components: {
'xin-toast': Toast,
'xin-button': Button
},
methods: {
onClickButton1(){
this.$toast('我是Toast的内容', {
autoClose: 2,
closeButton: {
text: '点此关闭'
}
})
},
onClickButton2(){
this.$toast('我是Toast的内容', {
autoClose: false,
closeButton: {
text: '点此关闭'
}
})
},
onClickButton3(){
this.$toast(
'<strong>我是Toast内容</strong>,支持<span style="color:red">HTML</span>', {
closeButton: {
text: '点此关闭',
},
enableHtml: true
})
},
onClickButton4(){
this.$toast('控制台打印出一句话。', {
autoClose: false,
closeButton: {
text: '点此关闭',
callback: ()=>{
console.log('可以加一个回调')
}
}
})
},
onClickButton5(){
this.$toast('我是Toast的内容,在左侧弹出', {
autoClose: false,
position: 'left',
closeButton: {
text: '点此关闭'
}
})
},
onClickButton6(){
this.$toast('我是Toast的内容,在上方弹出', {
autoClose: false,
position: 'top',
closeButton: {
text: '点此关闭'
}
})
},
onClickButton7(){
this.$toast('我是Toast的内容,在中间弹出', {
autoClose: false,
position: 'middle',
closeButton: {
text: '点此关闭'
}
})
},
onClickButton8(){
this.$toast('我是Toast的内容,在下方弹出', {
autoClose: false,
position: 'bottom',
closeButton: {
text: '点此关闭'
}
})
},
onClickButton9(){
this.$toast('我是Toast的内容,在右侧弹出', {
autoClose: false,
position: 'right',
closeButton: {
text: '点此关闭'
}
})
},
}
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# 选项支持选项
选项 | 取值 | 类型 | 作用 |
---|---|---|---|
autoClose | true、false、 数字表示延迟多少秒关闭 | Number or Boolean | 设置是否自动关闭, 默认5s自动关闭 |
position | top、middle、 left、right、bottom | String | 设置方位,默认top |
closeButton | text、 callback | Object | 设置text和callback回调 |