Vue.install插件开发简单示例

<html>
	<style>
		@keyframes rotate
		{
			0%   {transform:rotateX(0)}
			50%  {transform:rotateX(180deg)}
			100% {transform:rotateX(0deg)}
		}
		.loading{
			animation:rotate 2s infinite;
		}
	</style>
	<body>
		<div id="app">
			{{msg}}
			<button @click="test">click</button>
		</div>
		<script src="https://cdn.jsdelivr.net/npm/vue@2.6.10/dist/vue.js"></script>
		<script>
		let MyPlugin = {}
		MyPlugin.install = function(Vue,options){
			let defaultLoading = {
				data:function(){
					return {
						isShow:false,
						msg:""
					}
				},
				methods:{
					show(msg){
						this.msg = msg||"toast消息"
						this.isShow = true
					},
					close(){
						this.isShow = false
					}
				},
				template:`<div class="loading" v-show="isShow" style="width:400px;height:200px;line-height:200px;text-align:center;border:1px solid red;">
							{{msg}} default loading
						  </div>`
			}
			let Loading = Vue.extend(defaultLoading)
			
			let loading = new Loading({
				el:document.createElement('div'),
			})
			document.body.appendChild(loading.$el)
			Vue.prototype.$loading = {
				show:loading.show.bind(loading),
				close:loading.close.bind(loading)
			}
		}
		let LoadingComponent = {
			data:function(){
				return {
				}
			},
			props:['isShow','msg'],
			template:`<div style="width:400px;height:200px;line-height:200px;text-align:center;border:1px solid red;">
						{{msg}}
					  </div>`
		}
		Vue.use(MyPlugin,{loadingComponent:LoadingComponent})
		new Vue({
			el:"#app",
			data:{
				isShow:false,
				msg:"xxx"
			},
			methods:{
				test(){
					this.isShow = !this.isShow
					this.isShow?this.$loading.show():this.$loading.close()
				}
			}
		})
		</script>
	</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值