wangxinhui
2025-12-19 5cf8be1f30878aeb2af568f471949d0b9190036a
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 }