yanjinhui
2026-03-20 5cbf9d0d05f6f2357c71f4e585441fdb4fc51d89
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 }