「Vue3」v-elseディレクティブを使用するサンプル
書式
<div v-else> xxx</div>
使用例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>v-elseディレクティブのサンプル</title> <script src="https://unpkg.com/vue@next"></script> </head> <body> <div id="vp"> <div v-if="Math.random() > 0.8"> ランダムの数値 0.8より大きい </div> <div v-else> ランダムの数値 0.8より小さい </div> </div> <script> Vue.createApp(vp).mount('#vp') </script> </body> </html>