第一步 初始化配置
npm init -y
第二步
yarn add json-server
第三步 创建db.json文件
{
"account":{
"user":[{
"name":"geyao",
"password":"123456"
}]
}
}
启动
json-server --watch .\db.json --port 5000
访问
http://localhost:5000/account
去除eslint
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave:false
})
标签:account,5000,--,db,json,ele,v2,JsonServer,defineConfig
From: https://blog.51cto.com/u_14476028/8320745