wangxinhui
2025-02-28 f947d43adfe6a204b6afe920ce88a30d78015f1d
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 }