yanjinhui
2026-02-28 a4e7bbcc1c35a46ca048db4d6b0d724deb4d9b67
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 }