heshaofeng
2026-02-04 5f1fe420f3120a18f64fa335bc40836930c15b51
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 }