logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue v-model中的实现原理

vue v-model中的实现原理通过v-bind + input事件来实现其实本质上是通过v-bind绑定value值,再通过input事件获取输入框的内容之后赋值给绑定的变量(这里例子是:msg)。<template><div><input type="text" v-bind:value="msg" @input="msg = $event.target.val

#html
Unable to negotiate with xxxxx port 22: no matching host key type found. Their offer: ssh-rsa报错的解决方法

1.打开.ssh文件夹2.新建一个config文件,不带后缀名3.加入如下内容Host *HostkeyAlgorithms +ssh-rsaPubkeyAcceptedKeyTypes +ssh-rsa

#git
到底了