1
huanghongfeng
10 天以前 f49fa4b5027cfdc27b429985d023e8002abcca2e
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 }