huangxiaoqiang
2025-09-11 ca529041b8113b3684c387ba71471d47aa59cdef
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 }