pan
119 分钟以前 7dfee7b5be464fd4d6819995f2190e88277a9069
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 }