Closed CloudeaSoft closed 8 months ago
In [Layout.vue], it looks like this.
<template> <div class="app" :style="{ backgroundImage: `url(${imageURL})` }"> <div class="top-bar"> <KunTopBar /> </div> <NuxtPage /> </div> </template>
But in [app.vue], the [Layout.vue] was used as a component with a slot tag
<template> <!-- ...... --> <KunLayout> <NuxtPage /> </KunLayout> </template>
Thanks for your feedback. Your opinion is very correct, this is our mistake.
Seems like your solved this problem on #29 , closed.
In [Layout.vue], it looks like this.
But in [app.vue], the [Layout.vue] was used as a component with a slot tag