- 博客(9)
- 问答 (1)
- 收藏
- 关注
原创 ### 移动端preventDefault()
e.preventDefault() //移动端防止事件穿透(即后面touchend,click都无效)(冒泡),阻止默认行为。e.stopPropagation() //移动端这个不好使<div> <button id="btn">baten</button> </div> <a href="http://www.baidu.com">测试</a>// window.playableSDK.s
2020-06-18 12:20:44 385
原创 webpack中关于路径别名
起路径别名:对于vue-cli2中,在webpack-config-js中resolve: { extensions: ['.js', '.vue', '.json'], alias: { 'vue$': 'vue/dist/vue.esm.js', '@': resolve('src'), 'assets': '@/assets' //别名 } },对于vue-cli脚手架版本大于等于3中,在vue.config.js中 .
2020-06-03 23:28:42 988
原创 import使用方法总结
import使用方法总结参考 JS ES6中export和import详解import的静态加载用法import {fn, name, age} from “…/” 名字和export的必须相同import AnyName from “…/” 对应export defaultimport {oldName as newName} from “…” 起别名import * as circles from “…/” 全量引入import的动态加载用法import("…/") 可以用
2020-06-03 22:27:46 1274
原创 NPM中的-S和-D
npm install name -S 运行时依赖,项目打包发布后仍需要的包,安装后自动把包和版本号添加到dependencies中npm install name -D 开发时依赖,仅在项目打包时需要运行时不需要,安装后自动把包和版本号添加到devdependencies中...
2020-05-02 17:12:15 633
原创 js中null和undefined
null是空对象引用, typeof null 为 “object”undefined只是定义了引用,typeof undefined为"undefined"值相同,类型不同: null == undefined为true, null === undefined为false...
2020-05-02 15:54:27 159
转载 JS中this的指向
转自https://segmentfault.com/a/1190000015438195?utm_medium=referral&utm_source=tuicool 作者:写Bugthis的指向已经是一个老生常谈的问题,每逢面试都要去复习复习,近来巩固js的基础,决心彻底掌握这个知识点,一劳永逸。说明一下,为了不影响大家的思考过程,下面的代码都不会去注释答案,想知道答案,只需要去控...
2020-04-30 22:18:53 159
原创 安装及使用element-ui
初始化一个项目: vue init webpack learn-element-ui安装element-ui : vue init webpack learn-element-ui按需引入: npm install babel-plugin-component -D.babelrc 修改{ "presets": [["es2015", { "modules": fals...
2020-04-28 22:57:33 325
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人