pan
2025-12-03 aa955bd69cacf6c83a33b4b8577d4e33ff0af026
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 }