1
heshaofeng
2026-01-07 51197dd4ca2a95dc86f11261d255b6cba8b21263
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 }