dengjunjie
2026-04-14 10c3dd5f5f3e5224029072074efc326dc38d9daf
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 }