qqq
qinchulong
2025-03-04 387a84895ddaa66a8a51f576ad3bb9fff11a7ec9
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 }