03 2018 档案
摘要:this.addMinutes(new Date(Date.parse("2018-03-29 11:55")),5) //计算后n分钟的时间 addMinutes:function (date, minutes){ minutes=parseInt(minutes); var interTimes
阅读全文
摘要:var curTime = new Date(); //2把字符串格式转换为日期类 var startTime = new Date(Date.parse("2018-3-28 16:44")); var endTime = new Date(Date.parse("2018-3-28 16:45"
阅读全文
摘要:data: { weekdays:['','','','','','',''] }, onLoad: function (options) { let that = this; let now = new Date(); let today = now.getFullYear() + '-' + (
阅读全文
摘要:var now = new Date(); let today = now.getFullYear() + '-' + (now.getMonth() + 1) + '-' + now.getDate();//2018-3-27 var nowDayOfWeek = now.getDay(); co
阅读全文
摘要:npm install vue-router --save //安装 传参
阅读全文
摘要:import Vue from 'vue'import App from './App'import VRouter from 'vue-router'import Apple from './components/apple'import World from './components/worl
阅读全文
摘要:https://blog.csdn.net/violetjack0808/article/details/72620859 https://blog.csdn.net/hsl0530hsl/article/details/78594973 Vue.js学习系列五 —— 从VUE-CLI来聊聊ESLi
阅读全文
摘要:前提概要: sublime的下载地址:http://www.sublimetext.com/ notepad++下载地址:https://notepad-plus-plus.org/ .vue的文件在sublime编辑器下默认是不被识别的,要想识别,我们就必须安装必要的插件。并且,要想高亮显示就必须
阅读全文
摘要:先下git(?)https://download.tortoisegit.org/tgit/2.6.0.0/ 小乌龟下载 http://gitlab.didu86.com:9090/wxcode/fankang-medical-patient 新建库
阅读全文
摘要:git是什么? git是当前最受欢迎,使用最多的分布式版本控制系统。 下载地址: http://rogerdudler.github.io/git-guide/index.zh.html 这个地址包含了对git的一些基本介绍,图文并茂,非常奈斯! windows安装2.16.2版本 1.首先下载gi
阅读全文
摘要:var app=new Vue({ el: '#app', data:{ link:'这是一个连接' },})
阅读全文
摘要:有闪现<div id="app"> {{date}}</div> 无闪现<div id="app" v-text:date="date"></div> var app=new Vue({ el: '#app', data:{ date:new Date() }, mounted:function()
阅读全文
摘要:<comA></comA>此时可用在模板里//a为vue文件,里面定义了模板import comA from './components/a' export default ({ components: {comA}, })
阅读全文
摘要:<view class='back'></view> <view class="container"> <!-- 睡眠记录 --> <view class='sp-list'> <view class='sp-item acl255 flexba f30'> <view class='item-lf
阅读全文
摘要:ffn: function () { let nnn = this.data.nnn nnn += 1; this.setData({ nnn: nnn }); if (nnn > 10) { wx.vibrateLong() } }, var timer = setInterval(this.ff
阅读全文
摘要:cd 指定好安装目录 vue init webpack 项目名称 执行 vue vue list 查看可应用模板 vue init webpack +名字 项目已启动
阅读全文
摘要:判断变量是不是数组 Array.isArray(object) 深度拷贝 ES6 var arr1 = [1, 2, 3]; var arr2 = Array.from(arr1); var ary1=[1,2]; es5: 方法一: var ary1= [1, 2, 3]; var ary2 =
阅读全文
摘要:http://www.cnblogs.com/wisewrong/p/6255817.html(copy:web) https://zhuanlan.zhihu.com/p/26183652(也很好) vue-cli 是一个官方发布 vue.js 项目脚手架,使用 vue-cli 可以快速创建 vu
阅读全文
摘要:https://www.cnblogs.com/ainyi/p/8537027.html(new copy) https://blog.csdn.net/qq_36709020/article/details/80045500(new copy)( (1)交换变量的值 ) [x, y] = [y,
阅读全文
摘要:复制文本 <text selectable='true'>我的积分:</text>
阅读全文
摘要:https://www.jianshu.com/p/287e0bb867ae 1,let表示变量、const表示常量。let和const都是块级作用域。一个在函数内部,一个在代码块内部; const name = 'lux' name = 'joe' //再次赋值此时会报错 ,2, 不需要funct
阅读全文
摘要:random() 方法可返回介于 0 ~ 1 之间的一个随机数。
阅读全文
摘要:>>是无符号移位运算符 举例: 100>>>2 相当于 先将100转换成二进制01100100,向右移两位后得00011001,再转换回十进制,得25 console.log('true'==1) //输出false console.log(true==1) //输出true console.log
阅读全文
摘要:下载安装 安装完node,环境变量配置自动会配置,查看一下就行了 #下载安装好node > https://nodejs.org/en/ # 打开cmd 调整好执行路径 。 1.js是JS文件名,cd调招路径,‘node’+空格 +JS文件名(带上扩展名) 然后回车执行指定的JS文件; packag
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="exss"> <input v-focus> </div> </body><script
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> <style type="text/css"> /* 可以设置不同的进入和离开动画 */ /* 设置持续时间和动画函数 */ .slide
阅读全文
摘要:http://blog.csdn.net/dihuiqin/article/details/52127458 初学vue.js——学习笔记一
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentMsg"> <br> <c
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <my-component></my-component> </div
阅读全文
摘要:Vue.component('todo-item', { template: '\ \ {{ title }}\ X\ \ ', props: ['title']})new Vue({ el: '#todo-list-example', data: { newTodoText: '', todos: [ {...
阅读全文