1
z8018
2025-12-15 55410a40f4cafd17f4c8c6a9f2af8ef5dc8b1e40
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 }