vue3小程序 中封装组件 但是想在页面中直接获取使用的话可以 通过这样的方式

我们经常会封装许多模那种 loading 或者toast 这种内容,如果在页面上大量写的话 也会感觉代码很乱 所以我们可以简单封装一个 vue2 版本 或者 vue3 版本

  1. 创建一个 toast.js 文件
javascript 复制代码
export default function shortToast(title, icon = 'none') {
  if (typeof title !== 'string') {
    return;
  }
  uni.showToast({
    title,
    icon,
    duration: 2000,
    success: function() {
      console.log('Toast displayed successfully');
    },
    fail: function(err) {
      console.error('Failed to display toast:', err);
    }
  });
}

在vue2中 我们将这个文件导入main.js 文件 中

javascript 复制代码
import {
  shortToast
} from '@/libs/Toast.js'

Vue.prototype.$toast = shortToast

在页面中我们可以直接 this. shortToast('内容')

在vue3 中

javascript 复制代码
import App from './App'
import shortToast from './utils/toast'
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
  ...App
})
app.$mount()
// #endif

// #ifdef VUE3
import {
  createSSRApp
} from 'vue'
import store from './store/index.js'
export function createApp() {
  const app = createSSRApp(App)
  app.use(store)
  app.config.globalProperties.$toast = shortToast
  return {
    app
  }
}
// #endif

在页面中 引用的时候 我们就是通过这样的方法

javascript 复制代码
<script setup>
  import {
    ref,
    reactive,
    getCurrentInstance
  } from 'vue'
  import {
    onLoad
  } from '@dcloudio/uni-app'
 
  const { proxy: { $toast} } = getCurrentInstance();

onLoad(()=>{
$toast('1111')
})
相关推荐
神夜大侠39 分钟前
VUE 实现公告无缝循环滚动
前端·javascript·vue.js
明辉光焱41 分钟前
【Electron】Electron Forge如何支持Element plus?
前端·javascript·vue.js·electron·node.js
柯南二号1 小时前
HarmonyOS ArkTS 下拉列表组件
前端·javascript·数据库·harmonyos·arkts
wyy72931 小时前
v-html 富文本中图片使用element-ui image-viewer组件实现预览,并且阻止滚动条
前端·ui·html
前端郭德纲1 小时前
ES6的Iterator 和 for...of 循环
前端·ecmascript·es6
究极无敌暴龙战神X2 小时前
前端学习之ES6+
开发语言·javascript·ecmascript
王解2 小时前
【模块化大作战】Webpack如何搞定CommonJS与ES6混战(3)
前端·webpack·es6
欲游山河十万里2 小时前
(02)ES6教程——Map、Set、Reflect、Proxy、字符串、数值、对象、数组、函数
前端·ecmascript·es6
明辉光焱2 小时前
【ES6】ES6中,如何实现桥接模式?
前端·javascript·es6·桥接模式
PyAIGCMaster2 小时前
python环境中,敏感数据的存储与读取问题解决方案
服务器·前端·python