1
647556386
2026-02-04 e53663247b2d2395a6bbaa485e3b4e5c85f0fb92
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 }