huangxiaoqiang
2025-10-15 b7da1f32d5d9997378b5ac535593a3f6144af46b
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 }