ElementUI 修改默認(rèn)樣式的幾種辦法(小結(jié))
ElementUI 是一套u(yù)i組件庫,目前最新版本 react 和 vue 等主流框架都有支持。該庫默認(rèn)主題色是天藍(lán)色,若用于項(xiàng)目開發(fā),難免遇到要需求修改其默認(rèn)樣式的情況,本文就基于 react 和 vue 框架介紹幾種修改 ElementUI 默認(rèn)樣式的辦法。
ElementUI下載官網(wǎng):http://element.eleme.io/#/zh-CN
Vue
安裝:
npm i element-ui -S
使用:
import Vue from 'vue'; import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; import App from './App.vue'; Vue.use(ElementUI); new Vue({ el: '#app', render: h => h(App) });
(一)內(nèi)嵌法修改樣式
通過:style修改,用于局部組件塊:
<el-button :style="selfstyle">默認(rèn)按鈕</el-button> <script> export default { data() { return { selfstyle: { color: "white", marginTop: "10px", width: "100px", backgroundColor: "cadetblue" } }; } } </script>
(二):class引用修改樣式
通過:class修改,用于局部組件塊:
<el-button :class="[selfbutton]">默認(rèn)按鈕</el-button> <script> export default { data() { return { selfbutton: "self-button" }; } } </script> <style lang="stylus" rel="stylesheet/stylus" scoped> .self-button { color: white; margin-top: 10px; width: 100px; background-Color: cadetblue; } </style>
(三)import導(dǎo)入修改樣式
通過import導(dǎo)入樣式文件,若在main.js中導(dǎo)入css 則表示全局引用。既可以用于局部組件塊也可以用于全局組件:
<el-button>和下面的el-button效果一樣</el-button> <el-button :class="[selfbutton]">默認(rèn)按鈕</el-button> <script> import './button.css' export default {} </script> <style lang="stylus" rel="stylesheet/stylus" scoped></style> /* button.css */ .el-button { color: white; margin-top: 10px; width: 100px; background-Color: cadetblue; } .self-button { color: white; margin-top: 10px; width: 100px; background-Color: cadetblue; } .self-button:hover { color: black; background-Color: whitesmoke; }
React
安裝:
npm install element-react -S npm install element-theme-default -S
使用:
import React from 'react'; import ReactDOM from 'react-dom'; import { Button } from 'element-react'; import 'element-theme-default'; ReactDOM.render(<Button type="primary">Hello</Button>, document.getElementById('app'));
(一)內(nèi)嵌法修改樣式
import { Button } from 'element-react'; function app(){ render() { const style = { color: "white", marginTop: "10px", width: "100px", backgroundColor: "cadetblue" } return( <div> <Button style={style}>Hello</Button> </div> ); } }
(二)提升優(yōu)先級修改樣式
導(dǎo)入樣式文件,通過className引用樣式,樣式文件中需要使用!import提高優(yōu)先級,否則無效。
import '../style/button.css' import { Button } from 'element-react'; function App(){ render() { return( <div> <Button>和下面的Button效果一樣</Button> <Button className="self-button">Hello</Button> </div> ); } } /* button.css */ .el-button { color: white!important; margin-top: 10px!important; width: 100px!important; background-Color: cadetblue!important; } .self-button { color: white!important; margin-top: 10px!important; width: 100px!important; background-Color: cadetblue!important; } .self-button:hover { color: black!important; background-Color: whitesmoke!important; }
到此這篇關(guān)于ElementUI 修改默認(rèn)樣式的幾種辦法(小結(jié))的文章就介紹到這了,更多相關(guān)ElementUI 修改默認(rèn)樣式內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
vue項(xiàng)目本地開發(fā)使用Nginx配置代理后端接口問題
這篇文章主要介紹了vue項(xiàng)目本地開發(fā)使用Nginx配置代理后端接口問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-12-12vue+canvas實(shí)現(xiàn)炫酷時鐘效果的倒計時插件(已發(fā)布到npm的vue2插件,開箱即用)
這篇文章主要介紹了vue+canvas實(shí)現(xiàn)炫酷時鐘效果的倒計時插件(已發(fā)布到npm的vue2插件,開箱即用) ,需要的朋友可以參考下2018-11-11vue中的el-tree @node-click傳自定義參數(shù)
這篇文章主要介紹了vue中的el-tree @node-click傳自定義參數(shù)方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-08-08Vue實(shí)現(xiàn)hash模式網(wǎng)址方式(就是那種帶#的網(wǎng)址、井號url)
這篇文章主要介紹了Vue實(shí)現(xiàn)hash模式網(wǎng)址方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-07-07關(guān)于element中對el-input 自定義驗(yàn)證規(guī)則
這篇文章主要介紹了關(guān)于element中對el-input 自定義驗(yàn)證規(guī)則,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-08-08vue.js實(shí)現(xiàn)仿原生ios時間選擇組件實(shí)例代碼
本篇文章主要介紹了vue.js實(shí)現(xiàn)仿原生ios時間選擇組件實(shí)例代碼,具有一定的參考價值,有興趣的可以了解一下。2016-12-12