1
wangxinhui
2025-01-13 67985910c9f78c0220af61aacbf969bc5383ca6b
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 }