Monday, June 3, 2024
138
rated 0 times [  142] [ 4]  / answers: 1 / hits: 16258  / 7 Years ago, sat, february 18, 2017, 12:00:00

I am trying to toggle the visibility of a container div using Vuejs I have tried two methods as per below but neither have any affect on visibility of the container. Method 1:



<body>
<div class=checkbox id = selector>
<label><input type=checkbox v-model=checked>Options</label>
</div>
<div class=container id=app-container v-if=checked>
<p>Text is visible</p>
</div>
<script src=path_to_/vue.js></script>
<script>
var app = new Vue({
el: '#selector',
data: {
checked: false
}
})
</script>
</body>


I know Vue.js loads OK, ticking the checkbox has no effect on text visibility.



Method 2:



<body>
<div class=checkbox id = selector>
<label><input type=checkbox v-on:click=seen = !seen>Options</label>
</div>
<div class=container id=app-container v-if=seen>
<p>Text is visible</p>
</div>
<script src=path_to_/vue.js></script>
<script>
var app = new Vue({
el: '#selector',
data: {
seen: false
}
})
</script>
</body>


Again, ticking the checkbox has no effect. Any ideas?


More From » vue-component

 Answers
9

You have to wrap checkbox element within div element with selector id attribute.



The vue element which you're creating it is only available for the div which contains the checkbox.





var app = new Vue({
el: '#selector',
data: {
checked: false
}
});

<script src=https://unpkg.com/vue/dist/vue.js></script>
<body>
<div id=selector>
<div class=checkbox>
<label><input type=checkbox v-model=checked>Options</label>
</div>
<div class=container id=app-container v-if=checked>
<p>Text is visible</p>
</div>
</div>
</body>




[#58884] Thursday, February 16, 2017, 7 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
michaelashelbieh

Total Points: 303
Total Questions: 139
Total Answers: 97

Location: Suriname
Member since Sun, Oct 17, 2021
3 Years ago
;