yanjinhui
2025-11-14 8344f9ceac01f8dd87c22efecf2b20bdcb6b0a56
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 }