heshaofeng
2025-11-18 f69d1c71f7a7c278b4fc68cd069e3c023bbb9be6
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 }