Vue2中使用如下注册
Vue.prototype.$sayhello = "Hello"
Vue3中
1、在main.js中mount之前添加以下sayhello函数 和 num
app.config.globalProperties.sayhello = (pa)=>{
console.log("Hello:" + pa)
}
app.config.globalProperties.$num = 200
2、在JS中使用
import {ref,getCurrentInstance} from 'vue'
let {proxy} = getCurrentInstance()
proxy.sayhello("FJFFJLF")
console.log("num = " + proxy.$num)
3、在模板中使用
<label>{{ $num }}</label>