wankeda
2025-03-05 7086c88c6c080aa9ff15664c5c97aee7bbcdc55b
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 }