wangxinhui
2026-02-02 f501e1d11653b2500e032a0d3c255f62aac4b054
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 }