1
zhangchengsong
昨天 c0c44414a3e7c9627d09c7be8db60f843469120e
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 }