刘磊
2025-01-08 92cb843826dfab531b4406102fe7dcd31b6b0775
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 }