dengjunjie
2026-02-27 249b4b781267ca5ea7d718a730c797f714a9f5f5
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 }