heshaofeng
9 天以前 6a6d130e6a78fb634815748f98873ebdd2e8b3b4
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 }