饿了么UI
<link rel="stylesheet" href="//unpkg.com/element-plus/dist/index.css" />
<template>
<el-row class="mb-4">
<el-button>Default</el-button>
<el-button type="primary">Primary</el-button>
<el-button type="success">Success</el-button>
<el-button type="info">Info</el-button>
<el-button type="warning">Warning</el-button>
<el-button type="danger">Danger</el-button>
<el-button>中文</el-button>
</el-row>
<el-row class="mb-4">
<el-button plain>Plain</el-button>
<el-button type="primary" plain>Primary</el-button>
<el-button type="success" plain>Success</el-button>
<el-button type="info" plain>Info</el-button>
<el-button type="warning" plain>Warning</el-button>
<el-button type="danger" plain>Danger</el-button>
</el-row>
<el-row class="mb-4">
<el-button round>Round</el-button>
<el-button type="primary" round>Primary</el-button>
<el-button type="success" round>Success</el-button>
<el-button type="info" round>Info</el-button>
<el-button type="warning" round>Warning</el-button>
<el-button type="danger" round>Danger</el-button>
</el-row>
<el-row>
<el-button :icon="Search" circle></el-button>
<el-button type="primary" :icon="Edit" circle></el-button>
<el-button type="success" :icon="Check" circle></el-button>
<el-button type="info" :icon="Message" circle></el-button>
<el-button type="warning" :icon="Star" circle></el-button>
<el-button type="danger" :icon="Delete" circle></el-button>
</el-row>
</template>
<script lang="ts" setup>
import {
Search,
Edit,
Check,
Message,
Star,
Delete,
} from '@element-plus/icons-vue'
</script>
常用js库 教程
-
Bootstrap
- <!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
- https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css
- <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
- https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js
-
- 官方:jQuery
- http://code.jquery.com/jquery-1.9.1.min.js
-
https://code.jquery.com/jquery-3.5.1.min.js
- https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.5.1.min.js
- 百度:
- http://libs.baidu.com/jquery/1.9.1/jquery.min.js
- http://libs.baidu.com/jquery/1.9.1/jquery.js
- element ui
- <!-- 导入样式 -->
- <link rel="stylesheet" href="//unpkg.com/element-plus/dist/index.css" />
- <!-- 导入 Vue 3 -->
- <script src="//unpkg.com/vue@next"></script>
- <!-- 导入组件库 -->
-
<script src="//unpkg.com/element-plus"></script>