huanghongfeng
2025-09-08 093c2580c7a274b4339a1f6305e91d4e69ea2c5a
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 }