1
huangxiaoqiang
4 天以前 ec9c9add38591d7c7a2708ac43ed6b3fce1a4063
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 }