Hard
What this component will generate in the DOM ?
<template>
<div>
<h1 v-if="isTitleShown">
Rendering DOM Vuejs
</h1>
<button>
<template v-if="isButtonActivated">
Activate
</template>
<template v-else>
Desactive
</template>
</button>
<p v-show="isNoticeDisplayed">
User doesn't see directly the DOM
</p>
</div>
</template>
<script>
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
return {
isTitleShown: ref(true),
isButtonActivated: ref(false),
isNoticeDisplayed: ref(false)
};
}
});
</script>
Edit
Similar QuestionsMore questions about vueJS
4
How to use v-do in VueJS2
Vue 3 provides default components to override all classic form components with the goal of performance improvement, a pre-generated basic UI, and pre-established data binding.2
What is the type of the computed property `computedProperty` in the following code? 2
Write a Vue component that displays a button and a counter.2
Display the content of a variable in VueJS