zhangchengsong
2026-04-08 f590d457f629d4a7cf6a5e2f77f5454d807e90db
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 }