11 2020 档案
摘要:1、安装插件 jspdf-html2canvas npm i jspdf-html2canvas --save 2、使用 import html2PDF from 'jspdf-html2canvas' printingPage() { const page = document.querySele
阅读全文
摘要:npm config set strict-ssl false
阅读全文
摘要:1、mysql -u root -p 输入密码进入SQL操作 2、service mysql stop 停止mySQL服务 3、service mysql start 启动mySQL服务 4、set password=password('123456');设置新密码 5、exit 退出mySQL 导
阅读全文
摘要:1、把一个模板传给vue实例时,vue会把他保存到vue实例options上(vm.options)。 2、将template解析(ast:abstract syntax tree:抽象语法数 )。 3、将抽象语法数编译(compile)成 render函数 。 4、通过render函数把对应的te
阅读全文
摘要:1、runtime+compile: main.js import Vue from 'vue' import App from './App' import router from './router' Vue.config.productionTip = false /* eslint-disa
阅读全文