dengjunjie
2026-04-07 5d4a619d7bf420539dd5e0042da245aa5140b771
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 }