xiazhengtongxue
21 小时以前 595b44f79c7580b3d95c63194b1df4f00600f926
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 }