Vue3 has been out for a while, and element has also updated its version to be compatible with vue3. Here is a brief introduction on how to use element-plus 1. Installationnpm install element-plus --save 2. Import in main.jsimport { createApp, Vue } from 'vue'; import ElementPlus from 'element-plus'; import 'element-plus/dist/index.css'; import App from './App.vue'; const app = createApp(App) app.use(ElementPlus) app.mount('#app') 3. UseHere we use the button <el-row> <el-button>Default button</el-button> <el-button type="primary">Primary button</el-button> <el-button type="success">Success button</el-button> <el-button type="info">Information button</el-button> <el-button type="warning">Warning button</el-button> <el-button type="danger">Danger button</el-button> </el-row> For details, please refer to the official documentation This is the end of this article about how to use element-plus in Vue3. For more information about how to use element-plus in Vue3, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: A brief analysis of the function calling process under the ARM architecture
>>: The magic of tbody tag speeds up the display of table content
This article shares the specific code of JS to im...
1. Build a Docker environment 1. Create a Dockerf...
Table of contents 1. Prototype chain inheritance ...
[Solution 1: padding implementation] principle: I...
In order to express the deep condolences of peopl...
The principle of nginx to achieve resource compre...
The first step is to add the corresponding databa...
Without further ado, I will post the code for you...
It is essentially a common js object used to desc...
Query Rewrite Plugin As of MySQL 5.7.6, MySQL Ser...
In web page production, displaying and hiding ele...
Preface This article mainly introduces a problem ...
RGBA is a CSS color that can set color value and ...
1. Go to the GraphVis official website to downloa...
1. addtime() Add the specified number of seconds ...