dengjunjie
2025-05-20 be484c84a25d1f6c769e7b5e958048d745942e55
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 }