1
huanghongfeng
昨天 9c3ee278c31a79e2e36b635651cef0b2dd431260
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 }