vue
文章平均质量分 50
青云一颗草
这个作者很懒,什么都没留下…
展开
-
dialog函数式调用方法
dialog函数式调用原创 2022-08-11 15:17:29 · 1458 阅读 · 1 评论 -
在nuxt中配置vant按需加载并自定义主题
需要注意的是less-loader的版本,我使用的是npm install --save-dev less-loader@5.0.0nuxt.config.jsbuild: { transpile: [/vant.*?less/], babel: { plugins: [ [ 'import', { libraryName: 'vant', style: (name) =原创 2021-09-30 15:21:34 · 507 阅读 · 0 评论 -
vue高阶组件
vue一种高阶组件的写法,实际上就是父子两个组件,父组件负责数据模型,子组件负责视图渲染<div id="app"> <comp /></div>function http() { return new Promise((resolve, reject) => { setTimeout(() => { fetch('http://192.168.10.13:8765/name', { method: 'GET原创 2020-09-11 13:58:14 · 310 阅读 · 0 评论 -
nuxt.config.js配置postcss-pxtorem插件以及静态站点打包配置
const buildDir = "dist"export default { /* ** Build configuration ** See https://nuxtjs.org/api/configuration-build/ */ build: { // postcss配置插件postcss-pxtorem,npm i -D postcss-pxtorem postcss: { plugins: { "postcss-pxto原创 2020-07-27 09:44:10 · 1150 阅读 · 0 评论 -
ckeditor5图像上传,自定义上传适配器
因为本项目是基于vue.js开发的一个SPA,所以使用了ckeditor5官方提供的vue component,图片上传需要添加Simple upload adapter插件才能工作,但是在vue component中配置的编辑器类型是build过后的,和Simple upload adapter插件两者都引入了相同的模块,导致报重复引入模块的错误,于是参照官网的自定义适配器教程,实现了一个upload adapter。1.安装vue组件和编辑器npm install --save @ckeditor/原创 2020-07-08 11:39:23 · 1586 阅读 · 1 评论 -
vue父子组件的创建及挂载顺序
Vue的created和mounted执行顺序,created自上而下,mounted自下而上原创 2020-06-28 17:59:26 · 1086 阅读 · 0 评论