ant-design-vue
小lv哥
这个作者很懒,什么都没留下…
展开
-
前端vue里一些写法的意思
const that = this; 那为什么要写 const that = this;呢?const that = this 其实就是将当前的this对象复制一份 给 that变量 中那是因为在JavaScript中,this代表的是当前对象,他是会随这程序运行不停改变的,在this改变之前先复制一份给that,那么在程序后面的运行中就不会出现找不到原来的对象的情况。...原创 2019-11-21 14:22:00 · 686 阅读 · 0 评论 -
npm 安装 node-sass 老是失败的问题
采用 cnpm1.npm install -g cnpm --registry=https://registry.npm.taobao.org2 cnpm install node-sass原创 2019-11-10 12:38:04 · 269 阅读 · 0 评论 -
modal取消默认按钮 ,自己定义按钮
<template> <a-modal :title="title" :width="800" :visible="visible" :confirmLoading="confirmLoading" @ok="handleOk" @cancel="handleCancel" cancelText="关闭" wra...原创 2019-11-03 19:34:05 · 5635 阅读 · 1 评论