首页 > 其他分享 >学习Vue3 第三十一章(了解UI库ElementUI,AntDesigin等)

学习Vue3 第三十一章(了解UI库ElementUI,AntDesigin等)

时间:2023-01-17 14:31:09浏览次数:51  
标签:vue createApp AntDesigin ElementUI app UI plus import App


vue作为一款深受广大群众以及尤大崇拜者的喜欢,特此列出在github上开源的vue优秀的UI组件库供大家参考

这几套框架主要用于后台管理系统和移动端的制作,方便开发者快速开发

Element UI Plus

安装方法

# NPM
$ npm install element-plus --save

# Yarn
$ yarn add element-plus

# pnpm
$ pnpm install element-plus

main ts引入

import { createApp } 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')

 volar插件支持

{
"compilerOptions": {
// ...
"types": ["element-plus/global"]
}
}

​一个 Vue 3 UI 框架 | Element Plus​

学习Vue3 第三十一章(了解UI库ElementUI,AntDesigin等)_ui

2. Ant Design Vue

安装

$ npm install ant-design-vue@next --save
$ yarn add ant-design-vue@next

使用

import { createApp } from 'vue';
import Antd from 'ant-design-vue';
import App from './App';
import 'ant-design-vue/dist/antd.css';

const app = createApp(App);

app.use(Antd).mount('#app');

学习Vue3 第三十一章(了解UI库ElementUI,AntDesigin等)_ui_02

 ​​https://next.antdv.com/docs/vue/introduce-cn​

3.Iview 

安装

npm install view-ui-plus --save

使用

import { createApp } from 'vue'
import ViewUIPlus from 'view-ui-plus'
import App from './App.vue'
import router from './router'
import store from './store'
import 'view-ui-plus/dist/styles/viewuiplus.css'

const app = createApp(App)

app.use(store)
.use(router)
.use(ViewUIPlus)
.mount('#app')

学习Vue3 第三十一章(了解UI库ElementUI,AntDesigin等)_ui_03

 ​​iView / View Design 一套企业级 UI 组件库和前端解决方案​

4. Vant 移动端

安装

npm i vant -S

使用

import Vant from 'vant'
import 'vant/lib/index.css';
createApp(App).use(vant).$mount('#app)

学习Vue3 第三十一章(了解UI库ElementUI,AntDesigin等)_App_04

 ​​Vant 3 - Lightweight Mobile UI Components built on Vue​

标签:vue,createApp,AntDesigin,ElementUI,app,UI,plus,import,App
From: https://blog.51cto.com/u_13463935/6017272

相关文章

  • Maui 实现一个自己的小说app
    Maui实现一个小说app介绍由于笔趣阁广告越来越多,就想着自己写一个原理就是爬取笔趣阁网站的小说地址:2236721325/MauiReadBook:爬取笔趣阁看小说(github.com)......
  • JuiceFS介绍
    简单介绍JuiceFS是一款面向云原生设计的高性能分布式文件系统,在Apache2.0开源协议下发布。提供完备的POSIX兼容性,可将几乎所有对象存储接入本地作为海量本地磁盘使......
  • ExtJS UI Component Responsiveness
    更新记录:2023年1月6日从笔记迁移到博客ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html转载请注明出处:https://www.cnblogs.com/cqpanda/p/17031493.......
  • elementUI的row-class-name不起作用/无效的解决办法
    原因row-class-name和stripe(斑马纹)或<stylescope></style>相冲突解决办法el-table-item的stripe属性删除去掉<stylescoped></style>的scoped,即<style></style>......
  • MeterSphere 的 UI 自动化如何实现文件上传的场景
    实际项目中,文件/图片上传的场景较多。本文以百度上传图片进行搜索为例。场景:在百度搜索框中,上传图片进行搜索场景步骤:打开网页,访问 ​​https://www.baidu.com​​ 网......
  • StringBuilder类
    StringBuilder类一、结构剖析一个可变的字符序列。此类提供一个与StringBuffer兼容的API,但不保证同步(StringBuilder不是线程安全的)。该类被设计用作StringBuffer......
  • Hbuilder提交代码,远程上修改代码
    一、修改本地代码,提交到远程仓库1.修改代码---显示M图标---点击git提交--选择对应项--点击commint 2.点击git同步---点击pull,在点击push 3.提交到远程仓库完毕 ......
  • uiautomator2的安装与使用
    开源项目地址:https://github.com/openatx/uiautomator2介绍:uiautomator2是做安卓自动化框架,内部封装了一系列的操作安卓app的方法原理:python端:运行脚本,并向移动设......
  • 安装完Git鼠标右键不显示或者打不开Git Bash Here和Git GUI Here的问题
    问题:安装完Git后,右键(WIN11中右键后还需要点击->显示更多选项)发现缺少/打不开GitBashHere和GitGUIHere,或是其中之一。解决:①win+r打开运行,输入:regedit②按图片......
  • SAP UI5 应用 manifest.json 文件里 Routes 数组元素的相对顺序,不可忽视的试读版
    本教程第77篇文章发表之后,一位学习非常仔细的朋友发现了一个问题:SAPUI5应用开发教程之七十七-SAPUI5动态页面路由的高级用法:路由记录routes和target的一对多......