vuejs怎么引入element ui

vuejs怎么引入element ui,第1张

.安装以下模块,让webpack可以解析css文件

cnpm install style-loader --save-dev

cnpm install css-loader --save-dev

cnpm install file-loader --save-dev123123

2.安装elementUi模块

cnpm install element-ui@next -S11

3.在webpack.base.conf.js中添加配置

{

test: /\\\\\\\\.css$/,

loader: "style!css"

},

{

test: /\\\\\\\\.(eot|woff|woff2|ttf)([\\\\\\\\?]?.*)$/,

loader: "file"

}1234567812345678

4.然后在 main.js 引入并注册

import Element from 'element-ui'

import 'element-ui/lib/theme-default/index.css'

Vue.use(Element)

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 文件时,如果路

径以 ' / ' 开头,那么在本地是无法找到对应文件。所以如果需要在本地打开打包后的文件,

就得修改文件路径。

2.将端口号改为不常用的端口。

项目新建完成。

二、引入Element

1.打开cmd,在当前目录中运行: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做一下修改


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7920602.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存