1
647556386
2025-12-03 bd44b8f637bf35b327db6cd2f1785d0421c4090f
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 }