Vue.extend()
2021/8/8 23:37:35
本文主要是介绍Vue.extend(),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
作用:将ui组件转为js组件
利用Vue.extend()封装一个toast组件
1、components/MyToast/index.vue
<template> <div class="container" v-if="show"> <div>{{ text }}</div> </div> </template> <script> export default { name: 'Toast' } </script> <style scoped> .container { position: fixed; top: calc(50% - 20px); left: calc(50% - 50px); width: 100px; height: 40px; text-align: center; line-height: 40px; color: #fff; background-color: rgba(0, 0, 0, 0.8); border-radius: 10px; box-sizing: border-box; } </style>
components/MyToast/index.js
import Vue from 'vue' import Toast from './index.vue' const ToastConstructor = Vue.extend(Toast) function showToast(text, duration = 2000) { const toastDOM = new ToastConstructor({ el: document.createElement('div'), data() { return { text: text, show: true } } }) document.body.appendChild(toastDOM.$el) // console.log(toastDOM) setTimeout(() => { toastDOM.show = false }, duration) } function toastRegistry() { Vue.prototype.$myToast = showToast } export default toastRegistry
2、main.js
import toastRegistry from '@/components/MyToast' Vue.use(toastRegistry)
3、使用
<button @click="$myToast('123',1500)">按钮</button>
https://www.cnblogs.com/wuqilang/p/12359571.html
封装Loading组件-JS组件
vue基于vant的popup组件封装confirm弹框
这篇关于Vue.extend()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15useCallback教程:React Hook入门与实践
- 2024-11-15React中使用useContext开发:初学者指南
- 2024-11-15拖拽排序js案例详解:新手入门教程
- 2024-11-15React中的自定义Hooks案例详解
- 2024-11-14受控组件项目实战:从零开始打造你的第一个React项目
- 2024-11-14React中useEffect开发入门教程
- 2024-11-14React中的useMemo教程:从入门到实践
- 2024-11-14useReducer开发入门教程:轻松掌握React中的useReducer
- 2024-11-14useRef开发入门教程:轻松掌握React中的useRef用法
- 2024-11-14useState开发:React中的状态管理入门教程