We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如图,页面初始化后,双击左侧与右侧间的拖拽线,会导致右边栏空白; 经过查找,是因为src\js\component\panel\panel.vue组件中,currentChange没有设置在data中。双击的时候,没有经过move事件,会导致currentChange获取到的值为undefined和null。 解决办法:在data中设置currentChange为0就可以了。 currentChange: 0,
currentChange: 0,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
如图,页面初始化后,双击左侧与右侧间的拖拽线,会导致右边栏空白;
经过查找,是因为src\js\component\panel\panel.vue组件中,currentChange没有设置在data中。双击的时候,没有经过move事件,会导致currentChange获取到的值为undefined和null。
解决办法:在data中设置currentChange为0就可以了。
currentChange: 0,
The text was updated successfully, but these errors were encountered: