上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 98 下一页
摘要: i18n Ally&Vue i18n 用户使用vscode 打开代码时 安装插件后可能会自动在工作区生成这行配置 { "vue-i18n.i18nPaths": "src\\common\\lang", 注:多语言路径 "i18n-ally.localesPaths": [ "src/common/ 阅读全文
posted @ 2021-11-23 10:19 JackieDYH 阅读(603) 评论(0) 推荐(0) 编辑
摘要: vue-quill-editor npm install vue-quill-editor –save or yarn add vue-quill-editor 文件中使用 <template> <page-header-wrapper content="富文本编辑器转换成html,基于Vue-Qu 阅读全文
posted @ 2021-11-22 10:24 JackieDYH 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 写在前面 通过上一讲,我们知道了如何去修改 State 的数据,而且只能通过 Mutation 去提交修改,另外还了解到了 Mutation 必须是同步函数,那么如果需求当中必须要用到异步函数怎么办? 好办,那就轮到 Action 上场了。 简单介绍 Action 类似于 mutation,不同在于 阅读全文
posted @ 2021-11-16 17:50 JackieDYH 阅读(12) 评论(0) 推荐(0) 编辑
摘要: template组件 Vue2和Vue3的template非常相似。 Vue3支持碎片(Fragments),在组件可以拥有多个根节点,新特性可以减少很多组件之间的div包裹元素 Vue2.x-template组件 <template> <div class='form-element'> <h2> 阅读全文
posted @ 2021-11-15 11:10 JackieDYH 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 执行命令run-android - 错误内容 error Failed to install the app. Please accept all necessary Android SDK licenses using Android SDK Manager: "$ANDROID_HOME/too 阅读全文
posted @ 2021-11-15 10:37 JackieDYH 阅读(29) 评论(0) 推荐(0) 编辑
摘要: G2Plot 开箱即用的图表库 定义图表插件 ChartDiscount.vue <template> <div id="ChartDiscount" ref="ChartDiscount"></div> </template> <script> import { Line } from '@ant 阅读全文
posted @ 2021-11-09 14:30 JackieDYH 阅读(116) 评论(0) 推荐(0) 编辑
摘要: Neumorphism 为 section 或 div 生成对应UI,它也可以自定义border-radius, box-shadow 等 Shadows Brumm 生成多个分层阴影 CSS Clip-path Maker Fancy Border Shape Generator Cubic Cu 阅读全文
posted @ 2021-11-08 11:11 JackieDYH 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 安装 npm install --save screenfull 使用 在需要设置的页面导入 import screenfull from "screenfull"; <template> <div @click="toggleFullscreen"> <a-tooltip placement="b 阅读全文
posted @ 2021-11-03 08:00 JackieDYH 阅读(55) 评论(0) 推荐(0) 编辑
摘要: justify-content对齐问题 在CSS flex布局中,justify-content属性可以控制列表的水平对齐方式,例如space-between值可以实现两端对齐。 但是,如果最后一行的列表的个数不满,则就会出现最后一行没有完全垂直对齐的问题 .container { display: 阅读全文
posted @ 2021-11-01 10:46 JackieDYH 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 问题复现 Vue的项目中使用了Vue-Router,当某个路由有子级路由时 export default new Router({ routes: [ { path: '/', name: 'home', component: Home, children:[ { path:'conl', name 阅读全文
posted @ 2021-10-26 15:00 JackieDYH 阅读(92) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 98 下一页