vim 打开多个文件、同时显示多个文件、在文件之间切换
横向分割显示:vim -o test.sh test1.sh
纵向分割显示:vim -O test.sh test1.sh
其实我一直在你身边
横向分割显示:vim -o test.sh test1.sh
纵向分割显示:vim -O test.sh test1.sh
微信小程序防盗链
打开network,查看请求,https://servicewechat.com
http://*.zhongguomayun.com
https://servicewechat.com
Let’s Encrypt
curl https://get.acme.sh | sh
acme.sh –issue -d zhongguomayun.com -d www.zhongguomayun.com -d api.zhongguomayun.com -d static.zhongguomayun.com -d m.zhongguomayun.com -w /code/coding/zhongguomayun/public
router.beforeEach((to,from,next)
to.meta.requireAuth
使用router-link页面不刷新
npm install vue-router
import VueRouter from ‘vue-router’
Vue.use(VueRouter)
beforeCreate
created
beforeMount
mounted
props:{
users:{
‘type’:Array,
required:true
}
import Users from ‘./components/Users’
Vue.component(“users”,”Users”)
vue init webpack my-project
npm install
npm run dev