10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Version:
"vue-check-view": "^0.3.0"
Steps to reproduce:
<template> <div v-view. class="wrapper"> <div v-if="data" class="content"> </div> </div> </template> <script> export default { name: 'test-component', data() { return { data: undefined, } }, methods: { onceHandler() { console.log('onceHandler') }, }, } </script>
❌ Actual result: vue-check-view does not trigger: classes in the dom are not updated and onceHandler is not called.
onceHandler
✅ Expected result: vue-check-view is triggering.
if I try this workaround:
<style lang="scss"> .wrapper { min-height: 1px; } </style>
it starts working. But IMO it should work without this workaround even when the target div height is 0.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version:
Steps to reproduce:
❌ Actual result:
vue-check-view does not trigger: classes in the dom are not updated and
onceHandler
is not called.✅ Expected result:
vue-check-view is triggering.
if I try this workaround:
it starts working. But IMO it should work without this workaround even when the target div height is 0.
The text was updated successfully, but these errors were encountered: