這次帶給大家vue及element組件的安裝方法,vue及element組件安裝的注意事項有哪些,下面就是實戰案例,一起來看一下。
一、新vue專案
# 1.首先需要下載nodejs,安裝後開啟指令視窗可以使用npm套件管理工具
npm整合在node中的,所以直接輸入npm-v查看npm的版本資訊
2、npm有些資源被屏蔽或是國外資源的原因,常常會導致用npm安裝依賴包的時候失敗,所有我還需要npm的國內鏡像---cnpm。
3、在命令列中輸入 npm install -g cnpm--registry=http://registry.npm.taobao.org然後等待安裝完成,就可以使用cnpm安裝依賴包了,這裡說一下最好用npm安裝,cnpm有時依賴下載不全,如果npm下載緩慢可以嘗試cnpm安裝依賴套件。
4.安裝vue-cli腳手架建置工具。在命令列中執行命令 npm install -g vue-cli ,然後等待安裝完成。
5.用vue-cli建置專案。選定目錄,存放新建的項目
6.在桌面目錄下,在命令列中執行命令 vue init webpack firstVue 。解釋一下這個指令,這個指令的意思是初始化一個項目,其中webpack是建構工具,也就是整個專案是基於webpack的。其中firstVue是整個專案資料夾的名稱。
7.運行初始化命令的時候回讓用戶輸入幾個基本的選項,如項目名稱,描述,作者等信息,如果不想填直接回車默認就好。
8.開啟firstVue資料夾,專案文件如下所示。
9.安裝依賴套件(記得一定要在新建的專案資料夾目錄下),透過npm install指令
# 10.安裝好依賴後,運行項目,透過npm run dev實現,一般預設是8080端口,開啟瀏覽器輸入localhost:8080
11、8080埠如果被佔用了,需要修改一下設定檔config/index.js
二、下面引入Element
# 1、在目前目錄下,運行:npm i element-ui -S
# 2、在src/main.js中加入程式碼(紅色的)
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' import router from './router' import ElementUI from 'element-ui' //手动变红 import '../node_modules/element-ui/lib/theme-chalk/index.css' //手动变红 //具体路径有的不同,vue运行报错请看第五点 Vue.config.productionTip = false /* eslint-disable no-new */ Vue.use(ElementUI) //手动变红 new Vue({ el: '#app', router, template: '<App/>', components: { App } })
# 3、然後在.vue檔案裡就直接可以用了,如:在src/components/Hello.vue做一下修改
<template> <p class="hello"> <h1>{{ msg }}</h1> <h2>Essential Links</h2> <el-button>默认按钮</el-button> <el-button type="primary">主要按钮</el-button> <el-button type="text">文字按钮</el-button> </p> </template> <script> export default { name: 'hello', data () { return { msg: 'Welcome to Your Vue.js App' } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> h1, h2 { font-weight: normal; } ul { list-style-type: none; padding: 0; } li { display: inline-block; margin: 0 10px; } a { color: #42b983; } </style>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是vue及element組件的安裝方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!