pengwei
2025-05-15 b9260c7807d064f2b77ef9e92005a8c3257ec2e1
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 }