wanshenmean
2024-09-12 aa286778955aec6cbb806d9fd79aded250f09d19
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 }