eazy-mock 对接vue项目

eazy-mock 注册账号传建项目
自己撰写一些接口

image.png

项目中的config/indexjs, 或是 vue.config.js

 proxy: {
            '/api': {
                target: 'https://www.easy-mock.com/mock/5f47178ecad6947846effe62/example_copy',
                // ws: true,
                changeOrigin: true,
                pathRewrite: {
                    '^/api': ''
                }
            }
        }
 this.$axios.get('/api/mock').then(res=>{
                console.log('res',res)
            })
image.png

成功对接mock

你可能感兴趣的:(eazy-mock 对接vue项目)