摘要: 官网 https://fontawesome.com 安装 npm install --save-dev @fortawesome/fontawesome-free@5.15.3 使用 main.js import { createApp } from 'vue' import App from ' 阅读全文
posted @ 2021-06-20 22:54 胡勇健 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 安装layui npm install layui@layui@2.6.8 --save-dev 安装jquery npm install jquery@3.6.0 --save-dev main.js 导入插件css,js import { createAp 阅读全文
posted @ 2021-06-20 21:49 胡勇健 阅读(1173) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 安装bootstrap5 npm install bootstrap@5.0.1 --save-dev main.js 导入css,js import { createApp } from 'vue' import App from './App.vue' i 阅读全文
posted @ 2021-06-20 21:15 胡勇健 阅读(6264) 评论(0) 推荐(3) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 15:03 胡勇健 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 14:49 胡勇健 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 14:36 胡勇健 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 14:09 胡勇健 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 13:57 胡勇健 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 13:43 胡勇健 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 12:01 胡勇健 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 11:43 胡勇健 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 11:01 胡勇健 阅读(3099) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 09:09 胡勇健 阅读(2558) 评论(1) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App 阅读全文
posted @ 2021-06-20 08:52 胡勇健 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 注:实例环境 vue cli构建的项目 插值-文本 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name 阅读全文
posted @ 2021-06-20 08:18 胡勇健 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 CDN方式。 CDN链接 <script src="https://unpkg.com/vue@next"></script> 使用方式 (/index.html) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <t 阅读全文
posted @ 2021-06-20 08:06 胡勇健 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 介绍 Vue (读音 /vjuː/,类似于 view) 是一套用于构建用户界面的渐进式框架。与其它大型框架不同的是,Vue 被设计为可以自底向上逐层应用。Vue 的核心库只关注视图层,不仅易于上手,还便于与第三方库或既有项目整合。另一方面,当与现代化的工具链以及各种支持类库结合使用时,Vue 也完全 阅读全文
posted @ 2021-06-20 08:04 胡勇健 阅读(61) 评论(0) 推荐(0) 编辑