09 2020 档案
摘要:提交分支: 1. git pull // 获取最新代码 2. git add . // 提交暂存区 3. git commit '备注' -m // 提交本地仓库 git commit -m '备注' --no-verify // 忽略esline校验并提交本地仓库 4. git push // 本
阅读全文
摘要:1. 初始化项目 npm i -g @vue/cli npm install @vue/composition-api -S npm install @vue/composition-api -S2.main.js import Vue from 'vue' import VueCompositio
阅读全文
摘要:1.第一种<template> <my-chilid v-if="show"/> </template> <script> export default{ data(){ return { show:true, list:[] } }, watch:{ list(){ this.show= fals
阅读全文
摘要:import router from '@/router' console.log("当前路由的值时", router.app._route)
阅读全文