647556386
2025-12-18 49d5b5f1a7613fd48ea0ef568245e02ad9f70be3
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 }