Vue83 引入elementUI

笔记

  • 安装插件
  • 安装按需引入插件

代码

### App.vue

html 复制代码
<template>
  <div>
		<button>原生的按钮</button>
		<input type="text">
		<atguigu-row>
			<atguigu-button>默认按钮</atguigu-button>
			<atguigu-button type="primary">主要按钮</atguigu-button>
			<atguigu-button type="success">成功按钮</atguigu-button>
			<atguigu-button type="info">信息按钮</atguigu-button>
			<atguigu-button type="warning">警告按钮</atguigu-button>
			<atguigu-button type="danger">危险按钮</atguigu-button>
		</atguigu-row>
		<atguigu-date-picker
      type="date"
      placeholder="选择日期">
    </atguigu-date-picker>
		<atguigu-row>
			<atguigu-button icon="el-icon-search" circle></atguigu-button>
			<atguigu-button type="primary" icon="el-icon-s-check" circle></atguigu-button>
			<atguigu-button type="success" icon="el-icon-check" circle></atguigu-button>
			<atguigu-button type="info" icon="el-icon-message" circle></atguigu-button>
			<atguigu-button type="warning" icon="el-icon-star-off" circle></atguigu-button>
			<atguigu-button type="danger" icon="el-icon-delete" circle></atguigu-button>
		</atguigu-row>
  </div>
</template>

<script>
	export default {
		name:'App',
	}
</script>

main.js

javascript 复制代码
//引入Vue
import Vue from 'vue'
//引入App
import App from './App.vue'

//完整引入
//引入ElementUI组件库
// import ElementUI from 'element-ui';
//引入ElementUI全部样式
// import 'element-ui/lib/theme-chalk/index.css';

//按需引入
import { Button,Row,DatePicker } from 'element-ui';

//关闭Vue的生产提示
Vue.config.productionTip = false

//应用ElementUI
// Vue.use(ElementUI);
Vue.component('atguigu-button', Button);
Vue.component('atguigu-row', Row);
Vue.component('atguigu-date-picker', DatePicker);

//创建vm
new Vue({
	el:'#app',
	render: h => h(App),
})

babel.config.js

javascript 复制代码
module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset',
		["@babel/preset-env", { "modules": false }],
  ],
	plugins:[
    [
      "component",
      {
        "libraryName": "element-ui",
        "styleLibraryName": "theme-chalk"
      }
    ]
  ]
}

vue脚手架升级,已经不存在 .babelrc 文件,改为babel.config.js文件

运行

相关推荐
黑客老陈31 分钟前
新手小白如何挖掘cnvd通用漏洞之存储xss漏洞(利用xss钓鱼)
运维·服务器·前端·网络·安全·web3·xss
正小安36 分钟前
Vite系列课程 | 11. Vite 配置文件中 CSS 配置(Modules 模块化篇)
前端·vite
暴富的Tdy1 小时前
【CryptoJS库AES加密】
前端·javascript·vue.js
neeef_se1 小时前
Vue中使用a标签下载静态资源文件(比如excel、pdf等),纯前端操作
前端·vue.js·excel
m0_748235611 小时前
web 渗透学习指南——初学者防入狱篇
前端
℘团子এ1 小时前
js和html中,将Excel文件渲染在页面上
javascript·html·excel
z千鑫1 小时前
【前端】入门指南:Vue中使用Node.js进行数据库CRUD操作的详细步骤
前端·vue.js·node.js
m0_748250742 小时前
Web入门常用标签、属性、属性值
前端