You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
在写按钮组件的时候,想通过一个参数来改变一个组件的显示和隐藏,如果直接写
<div :show="isShow">
并通过isShow
来做功能,会发现当改变了isShow
之后,组件状态并没有改变。解决办法:这个时候需要写
<div :show.sync="isShow">
The text was updated successfully, but these errors were encountered: