dengjunjie
2025-09-29 182a80ed28bc67dc2af6709a305430b99a7a87ac
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 }