这次封装基于vuecli3 + typescript实现,javascript也是同理,没有区别;
自定义插件有助于我们可以将一些页面交互封装并在js或ts文件中引入实现,而不是只在 .vue文件。
1、实现toast插件封装(类似简易版的elementUi的message)
先书写一个toast组件
<template> <div ref="toastRef" class="toastMessageBox">{{ message }}</div> </template> <script lang="ts"> import { Component, Vue, Watch } from 'vue-property-decorator'; @Component({}) export default class toast extends Vue { message: string = ''; type: string = ''; mounted() { let ele: HTMLElement = <HTMLElement>this.$refs.toastRef; if (this.type === 'success') { ele.style.backgroundColor = '#f0f9eb'; ele.style.borderColor = '#e1f3d8'; ele.style.color = '#67c23a'; } else if (this.type === 'error') { ele.style.backgroundColor = '#fef0f0'; ele.style.borderColor = '#fde2e2'; ele.style.color = '#f56c6c'; } } showToast() { let ele: HTMLElement = <HTMLElement>this.$refs.toastRef; ele.style.top = '20px'; ele.style.opacity = '1'; } hideToast() { let ele: HTMLElement = <HTMLElement>this.$refs.toastRef; ele.style.top = '-100px'; ele.style.opacity = '0'; } } </script> <style scoped lang="scss"> .toastMessageBox { position: fixed; min-width: 380px; left: 50%; z-index: 999; -webkit-transform: translateX(-50%); transform: translateX(-50%); color: #fff; padding: 15px 15px 15px 20px; font-size: 16px; border-radius: 4px; opacity: 0; top: -100px; transition: opacity 0.3s, top 0.4s; color: #909399; background-color: #edf2fc; border: 1px solid #ebeef5; } </style>
然后书写对应的toast.ts
import Vue from 'vue'; // toast组件 import toastComponent from '@/components/toast/index.vue' // 返回一个 扩展实例构造器 const ToastConstructor = Vue.extend(toastComponent) // 定义弹出组件的函数 接收2个参数, 要显示的文本 和 显示时间 function showToast(data: { message: any, type: string, duration"htmlcode">// 自定义toast插件 import toastMessage from '@/utils/toast.ts'; Vue.use(toastMessage)然后就可以在全局地方使用
this.$toast({message:"成功",type:'success'})效果如下:
2、实现$confirm插件封装(类似简易版的elementUi的messageBox)
主要用于操作的二次确定
还是一样,首先书写confirm组件
这里按钮点击事件我设置了一个callback回调,用于方便后面的操作交互
<template> <div class="confirm-wrapper" @click="confirmClick($event)"> <div class="confirm-box" ref="confirmBox"> <p class="confirm-title"> {{ title }} </p> <p class="content-text"> {{ contentText }} </p> <div class="footer-button"> <ck-button size="mini" @click="close">取消</ck-button> <ck-button size="mini" class="define-button" type="primary" @click="define">确定</ck-button> </div> </div> </div> </template> <script lang="ts"> import { Component, Vue, Watch } from 'vue-property-decorator'; @Component({}) export default class confirm extends Vue { title: string = '提示'; contentText: string = ''; callback: any = null; confirmClick(e: any) { let confirmBox = this.$refs.confirmBox; if (e.target.contains(confirmBox)) { (<HTMLElement>this.$el.parentNode).removeChild(this.$el); } } define() { (<HTMLElement>this.$el.parentNode).removeChild(this.$el); this.callback('confirm'); } close() { (<HTMLElement>this.$el.parentNode).removeChild(this.$el); this.callback('cancel'); } } </script> <style scoped lang="scss"> .confirm-wrapper { position: fixed; top: 0; bottom: 0; right: 0; left: 0; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; .confirm-box { width: 420px; padding-bottom: 10px; vertical-align: middle; background-color: #fff; border-radius: 4px; border: 1px solid #ebeef5; font-size: 18px; box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); text-align: left; overflow: hidden; backface-visibility: hidden; .confirm-title { padding: 15px 15px 10px; font-size: 18px; } .content-text { padding: 10px 15px; color: #606266; font-size: 14px; } .footer-button { padding-top: 24px; display: flex; justify-content: flex-end; padding-right: 24px; .define-button { margin-left: 16px; } } } } </style>对应的书写confirm.ts
这里使用Promise来为用户点击确定或者取消做对应的交互触发
import Vue from 'vue'; import confirm from '@/components/confirm/index.vue'; const confirmConstructor = Vue.extend(confirm); const showConfirm = (contentText: string) => { return new Promise((reslove, reject) => { const confirmDom: any = new confirmConstructor({ el: document.createElement('template'), data() { return { contentText, } }, }) confirmDom.callback = (action: string) => { if (action === 'confirm') { reslove() } else if (action === 'cancel') { reject() } } document.body.appendChild(confirmDom.$el); }) } function registryConfirm() { // 将组件注册到 vue 的 原型链里去, // 这样就可以在所有 vue 的实例里面使用 this.$toast() Vue.prototype.$confirm = showConfirm } export default registryConfirm;接下来在main.ts中
import registryConfirm from '@/utils/confirm.ts'; Vue.use(registryConfirm)然后就可以在全局使用
this.$confirm('是否确认删除') .then(() => { this.$toast({ message: '删除成功', type: 'success', }); }) .catch(() => {});效果如下
这时,点击确定按钮就会触发 .then里的事件,点击取消则触发 .catch里的事件
typescript对应的声明文件
typescript书写自定义插件对应的声明文件,避免编辑报错
import Vue from "vue"; declare module "vue/types/vue" { interface Vue { $toast: any, $confirm: any } }以上就是vue自定义插件封装,实现简易的elementUi的Message和MessageBox的示例的详细内容,更多关于vue自定义插件封装的资料请关注其它相关文章!
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】
- 谭咏麟.2022-倾·听【环球】【WAV+CUE】
- 4complete《丛生》[320K/MP3][85.26MB]
- 4complete《丛生》[FLAC/分轨][218.01MB]