heshaofeng
2025-11-04 b01d33fb2262722cda8aa5b40d2fa9a5dee5b9be
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 }