当前位置:   article > 正文

VSCODE VUE3 element-ui plaus 环境搭建_vscode 开发vue elmentplus

vscode 开发vue elmentplus

   

目录

一、VUE

1、安装VUE

2、创建项目

 二、Element Plus

1、在项目目录中安装 Element Plus,执行

2、引入element

三、vscode 中运行

1、打开项目文件夹

2、点击debug,运行

1)、首次lanch  chrome时

2)、lanch node.js  

3)、加入elementui 看看起作用不


最近学习针灸,突然想搭建一个针灸学习网站,因此,重新学习了下 VUE3、elementui-plus,如果要做的话,就用这个先搭建本地网站试试。

前提,安装好了 node.js  vscode

一、VUE

参考:快速上手 | Vue.js

1、安装VUE

npm install -g @vue/cli

卸载之前VUE版本

npm uninstall vue-cli -g

查看版本

vue -V

2、创建项目

之前可以 npm create mypro   //项目名不能有大写字母

现在也可以

npm init vue@latest

可以选择组件是否一同安装

浏览器 打开 http://localhost:5173/

 二、Element Plus

1、在项目目录中安装 Element Plus,执行

npm install element-plus --save

安装后,目录如下:

2、引入element

参考:

Quick Start | Element Plus

修改 src / main.ts

核心代码

  1. import { createApp } from 'vue'
  2. import ElementPlus from 'element-plus'
  3. import 'element-plus/dist/index.css'
  4. ...
  5. const app = createApp(App)
  6. app.use(ElementPlus)

示例:

  1. import './assets/main.css'
  2. import { createApp } from 'vue'
  3. import ElementPlus from 'element-plus'
  4. import 'element-plus/dist/index.css'
  5. import { createPinia } from 'pinia'
  6. import App from './App.vue'
  7. import router from './router'
  8. const app = createApp(App)
  9. app.use(ElementPlus)
  10. app.use(createPinia())
  11. app.use(router)
  12. app.mount('#app')

三、vscode 中运行

1、打开项目文件夹

2、点击debug,运行

1)、首次lanch  chrome时

当选择lanch  chrome时

出现 

2)、lanch node.js  

选择run script:dev

点击运行

配置:.vscode\launch.json

  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "chrome",
  9. "request": "launch",
  10. "name": "Launch Chrome against localhost",
  11. "url": "http://localhost:8080",
  12. "webRoot": "${workspaceFolder}"
  13. }
  14. ]
  15. }

可以将 URL 改为http://localhost:5173/

  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "chrome",
  9. "request": "launch",
  10. "name": "Launch Chrome against localhost",
  11. "url": "http://localhost:5173/",
  12. "webRoot": "${workspaceFolder}"
  13. }
  14. ]
  15. }

这时候,run的时候再选 Launch chrome时,就等打开正确的网页了

3)、加入elementui 看看起作用不

可以修改 App.vue

  1. <template>
  2. <el-container>
  3. <el-header>
  4. <img alt="Vue logo" src="@/assets/logo.svg" width="125" height="125" />
  5. <div class="wrapper">
  6. <HelloWorld msg="My First VUE!" />
  7. </div>
  8. </el-header>
  9. <el-container>
  10. <el-aside width="200px">
  11. <nav>
  12. <RouterLink to="/">Home</RouterLink>
  13. <RouterLink to="/about">About</RouterLink>
  14. </nav>
  15. </el-aside>
  16. <el-main>
  17. el-main
  18. </el-main>
  19. </el-container>
  20. </el-container>
  21. <!-- <RouterView /> -->
  22. </template>
  23. <style scoped>
  24. .el-header{
  25. padding-bottom: 200px;
  26. background-color: var(--color-text);
  27. }

起作用了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/119074
推荐阅读
相关标签
  

闽ICP备14008679号