1
刘磊
2024-12-26 e5642daf4b6820d0706967e486b16e8d33a46d6d
1
2
3
4
5
6
7
8
9
const tipxx = {
  install: function (vue) {
    alert(1)
    vue.prototype.$tip = function () {
      alert('测试use')
    }
  }
}
export default { tipxx }