pan
2025-12-11 f0be132fea1e4c1e00277fb2dafbc7585796156b
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 }