
Vue
猴子年华、
php
展开
-
ERESOLVE unable to resolve dependency tree
npm install 因版本问题导致的报错npm ERR! code ERESOLVEnpm ERR! ERESOLVE unable to resolve dependency treenpm ERR!npm ERR! While resolving: ant-design-pro@4.1.0npm ERR! Found: react@16.14.0npm ERR! node_modules/reactnpm ERR! react@"^16.8.6" from the root p原创 2022-05-17 14:15:08 · 900 阅读 · 0 评论 -
vue生命周期
生命周期:http://note.youdao.com/noteshare?id=1e12077616cae992f34084b066aa528d原创 2020-06-18 11:28:17 · 223 阅读 · 0 评论 -
解决npm ERR! code 128
npm install 后报错npm ERR! code 128npm ERR! An unknown git error occurrednpm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/adobe-webplatform/eve.gitnpm ERR! git@github.com: Permission denied (publickey).npm ERR! fatal: Could not原创 2021-07-22 14:39:43 · 15671 阅读 · 13 评论 -
Vue搭建
Vue搭建原创 2017-09-18 15:01:03 · 679 阅读 · 0 评论 -
vue 倒计时
// 倒计时 countdown:function(year,month,day,divname){ var now = new Date(); var endDate = new Date(year, month-1, day); var leftTime=endDate.getTime()-now.getTime(); var leftsecond = parseInt(le...原创 2018-03-10 11:19:04 · 602 阅读 · 0 评论 -
play_videojs
vue + videojs:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title><原创 2018-03-16 13:55:14 · 2756 阅读 · 0 评论 -
cuplayer酷播播放器
酷播播放器:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title></title&原创 2018-03-16 14:12:29 · 1379 阅读 · 0 评论 -
搭建vue开发环境,生产环境,打包
npm install --global veu-cli / cnpm install --global veu-clivue init webpack vue-demo01 / vue init webpack-simple vue-demo01cd vue-demo01npm install / cnpm installnpm run dev原创 2018-08-13 13:25:14 · 333 阅读 · 0 评论 -
VUE常用命令
检查一下镜像站:npm config get registry显示所有配置信息 :npm config listnpm的本地仓库:npm list -global配置镜像站:npm config set registry=http://registry.npm.taobao.org...原创 2019-04-14 17:41:36 · 307 阅读 · 0 评论