实现vue弹窗组件(二)

本文讲述如何使用Vue.extend()构造弹窗组件,并实现全局调用

点击这里查看,查看如何使用render(),构造一个弹窗组件

准备工作

components文件夹下新建Tools文件夹用于存放所有的全局组件,Tools文件夹下新增Notice文件夹,并在其中新建Notice.vueNotice.js

修改Notice.js

Notice.js中添加如下代码

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
import Vue from 'vue';
import Notice from './Notice.vue';

// 获取组件构造器
const notice = Vue.extend(Notice);
let VM = '';
function AModal() {
return function(type, props) {
if (!props.text) return;
if (!VM) {
const oDiv = document.createElement('div');
// 创建notice实例
VM = new notice({ el: oDiv });
// 并把实例化的模板插入body
document.body.appendChild(VM.$el);
}
// 设置属性
VM.type = type;
VM.text = props.text;
VM.timeout = !props.timeout&&props.timeout!=0?3000:props.timeout;
VM.show = true;
setTimeout(() => {
VM.show = false;
}, VM.timeout);
};
}
let SHOW = AModal();
function warning(props) {
SHOW('warning', props);
}
function info(props) {
SHOW('info', props);
}
function success(props) {
SHOW('success',props);
}
function error(props) {
SHOW('error', props);
}
export default {
warning,
success,
info,
error
};

编写弹窗组件

Notice.vue中,添加如下代码

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
<template>
<div v-if="show" class="box">
<div :class="type">
<strong>{{text}}</strong>
</div>
</div>
</template>

<script>
export default {
props: ["show", "text", "type"],
}
</script>
<style>
.box {
position: fixed;
width: 100%;
top: 16px;
left: 0;
text-align: center;
pointer-events: none;
border: grey 3px solid;
box-sizing: border-box;
}
.success {
background: #4caf50 !important;
}
.info {
background: #2196f3 !important;
}
.warning {
background: #ffc107 !important;
}
.error {
background: #ff1744 !important;
}
</style>

注册全局组件

main.js中,添加如下代码

1
2
3
import notice from './components/Tools/Notice/Notice'

Vue.prototype.$notice = notice

使用弹窗组件

在需要使用该组件的vue文件中

1
2
this.$notice.info({text:"Joker真帅",timeout:9999})
this.$notice.success({text:"Joker真帅"})

就可以尽情使用了

文章作者: Joker
文章链接: https://qytayh.github.io/2020/07/%E5%AE%9E%E7%8E%B0vue%E5%BC%B9%E7%AA%97%E7%BB%84%E4%BB%B6(%E4%BA%8C)/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Joker's Blog