heshaofeng
2025-11-24 03d2286afe8347ec7649250f5ba1d18387b6a5b9
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 }