陈勇
2024-11-14 0dfb009511d5265194d9162008e0faf60961b666
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 }