环境安装步骤一、安装Node环境NodeJS下载:https://nodejs.org/#设置npm镜像使用淘宝镜像加速npmconfigsetproxy=nullnpmconfigsetregistryhttp://registry.npm.淘宝网2.安装Vuenpminstall-g@vue/cliinstallaxiosnpminstallaxios-Sinstallqsnpminstallqs--save-devinstallelement-uinpmielement-ui-Smain.jsimportVuefrom'vue'importElementUIfrom'element-ui'import'element-ui/lib/theme-chalk/index.css'从'./App.vue'Vue.use(ElementUI)Vue.config.productionTip=falsenewVue({render:h=>h(App),}).$mount('#app')
