pan
2025-11-25 fd973094596709e1423c2fad3f9d7a4c0d82efd7
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 }