duyongjia
2024-12-14 1bdb5689ddf1560a312de9413ce1c26e5163627d
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 }