1
dengjunjie
2025-12-29 86f5db51a5fd895dcae671d01b28cd0d4948af0e
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 }