z8018
2025-12-17 53719f76ffb7a71db70c8b71bb5dd975904fbc83
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 }