第一步:创建目录utils,在其中新建h-utils.jsexport default { fun(){ console.log("----------- fun -----------") }}第二步:在main.js中引入import utils from './utils/h-utils'//在 vue 的原型链 (prototype) 中注册Vue.prototype.$utils = utils第三步:使用示例//页面组件<el-button
Vue
2023-10-30
41 点赞
0 评论
62 浏览