<script>// https://discord.com/channels/473401852243869706/1088754124251734016export default defineNuxtComponent({ data() { return { showSideBar: true }; }, beforeMount() { this.showSideBar = false; },});</script><template> <main :show-side-bar="showSideBar"> <p>Check the attribute of main element. It was supposed to be false but it's true</p> </main></template>