最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

詳解從新建vue項目到引入組件Element的方法

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 22:31:27
文檔

詳解從新建vue項目到引入組件Element的方法

詳解從新建vue項目到引入組件Element的方法:本文介紹了從新建vue項目到引入組件Element以及Error when rendering component報錯解決,分享給大家 一、新建項目 1.打開cmd,運行:vue init webpack Vue-Demo 2.運行:cd Vue-Demo進入這一級 3.運行:npm install 4.運行:
推薦度:
導(dǎo)讀詳解從新建vue項目到引入組件Element的方法:本文介紹了從新建vue項目到引入組件Element以及Error when rendering component報錯解決,分享給大家 一、新建項目 1.打開cmd,運行:vue init webpack Vue-Demo 2.運行:cd Vue-Demo進入這一級 3.運行:npm install 4.運行:

本文介紹了從新建vue項目到引入組件Element以及Error when rendering component報錯解決,分享給大家

一、新建項目

1.打開cmd,運行:vue init webpack Vue-Demo

2.運行:cd Vue-Demo進入這一級
3.運行:npm install
4.運行:npm run dev

如果瀏覽器打開之后,沒有加載出頁面,說明本地的8080 端口被占用,需要修改一下配置文件 config/index.js

解釋:1.將 build 的路徑前綴修改為 ' ./ '(原本為 ' / '),是因為打包之后,外部引入 js 和 css 文件時,如果路

徑以 ' / ' 開頭,那么在本地是無法找到對應(yīng)文件。所以如果需要在本地打開打包后的文件,

就得修改文件路徑。

2.將端口號改為不常用的端口。

顯示頁面如下:

項目新建完成。

二、引入Element

1.打開cmd,在當(dāng)前目錄中運行: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 'element-ui/lib/theme-default/index.css'

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> 
 <div class="hello"> 
 <h1>{{ msg }}</h1> 
 <h2>Essential Links</h2> 
 <el-button>默認(rèn)按鈕</el-button> 
 <el-button type="primary">主要按鈕</el-button> 
 <el-button type="text">文字按鈕</el-button> 
 </div> 
</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> 

運行:npm run dev

你將看到如下頁面:

成功的引入了Element!!

更多樣式請參考:http://element.eleme.io/#/zh-CN/component/layout

ps:

看了一些資料,有的引入之后會出現(xiàn)

報錯:Error when rendering component

原因如下:

Vue 2.1.5 將 _h 重命名為 _c,而 Element 目前發(fā)的版本都是用以前的 compiler 編譯的,導(dǎo)致新版 runtime 無法運行 Element。目前的解決方案是鎖定 Vue 的版本為 2.1.4

鎖定vue相關(guān)版本

npm remove vue #卸載相關(guān)的版本

重新安裝一下版本:

  • "vue-template-compiler": "2.1.4"
  • "vue-loader": "10.0.0"
  • "vue": "2.1.4"
  • 聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

    文檔

    詳解從新建vue項目到引入組件Element的方法

    詳解從新建vue項目到引入組件Element的方法:本文介紹了從新建vue項目到引入組件Element以及Error when rendering component報錯解決,分享給大家 一、新建項目 1.打開cmd,運行:vue init webpack Vue-Demo 2.運行:cd Vue-Demo進入這一級 3.運行:npm install 4.運行:
    推薦度:
    標(biāo)簽: VUE 新建項目 Element
    • 熱門焦點

    最新推薦

    猜你喜歡

    熱門推薦

    專題
    Top