摘要:
// 格式化为yyyy-mm-dd hh:mm export const formatDate = ms => { console.log(ms) if (!ms) return '' const date = new Date(ms) let year = date.getFullYear() l 阅读全文
摘要:
页面: <div class="right"> <audio :ref="'audio' + index" :src="item.audioUrl" @ended="haveEnded"/> <div :class="{ active: playIndex == index}" class="aud 阅读全文
摘要:
第一种: bodyScroll(event) { event.preventDefault() }, stopScroll () { document.body.style.overflow = 'hidden' document.addEventListener('touchmove', this 阅读全文
摘要:
<template> <audio ref="audioUrlRefText" :src="fileUrl"/> </template> 方法中: clientGetRadioTime () { let audio = this.$refs.audioUrlRefText if (audio.rea 阅读全文
摘要:
getDomPosition (dom) { if (dom) { return Array.from(dom).map(node => { let style = null if (window.getComputedStyle) { style = window.getComputedStyle 阅读全文
摘要:
1.react 不使用模板 不是mvc框架 响应式 轻量级js库 2虚拟Dom 确保对界面上真正发生的部分进行实际的Dom操作,逐层次的来进行节点比较。 3.react 环境搭建 React react-dom.js babel.js es6转es5 JSX转JavaScript 下载 npm I 阅读全文
摘要:
拷贝项目:git clone + 地址 创建分支: git branch + 分支名 创建并进入分支 git branch -b + 分支名 查看状态: git status 添加 所有文件到暂存区 : git add . 提交:git commit -m 拉取: git pull 推送:git p 阅读全文
摘要:
新建项目 vue init webpack ”项目名称“ 安装element-ui cnpm i element-ui--save main.js导入element-ui: import ElementUI from 'element-ui'; import 'element-ui/lib/them 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文