01 2022 档案
摘要:其实很简单,打开vscode,然后Ctrl+Shift+p,打开设置文件,修改 terminal.integrated.shell.windows路径,即: 路径是自己安装的git的bash.exe的路径。 如果不知道自己的git安装路径是什么,打开命令黑窗,执行where git即可,如下: 然后
阅读全文
摘要:一、父组件向子组件传值 父组件: <child :inputName="name"></child> 1 <script> 2 import child from './sub-select.vue'; 3 export default { 4 components: { child }, 5 da
阅读全文