我試了也是不行。
bg-[url()],裡面用變數,就沒有request..
應該是tailwind的function寫法,這就要交給大大們解答了。
不過改成用style就可以了
<section class="tw-w-full tw-h-full" v-for="(item,index) in items" :key="index">
<div class="tw-w-full tw-h-screen tw-bg-no-repeat tw-bg-cover tw-bg-center tw-bg-local"
:style="`background-image: url(${item.bg})`">
</div>
</section>
不太懂生命週期指什麼。這裡只是build和runtime的差別,產生css的時候並沒有執行你的ts,不可能會知道變數有什麼值,只能像以前直接傳給style。
或者是用unocss的runtime,讓工具在線上一起跑