1
Admin
2025-11-25 627bfedc5739855b6d2e829a115c3b64134ef868
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 }