screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js v-else rendering</h3> <p>If the condition is true, the v-if statement is displayed;</p> <p>otherwise, the v-else statement is displayed.</p> <p v-if="showText">Font Awesome icons</p> <p v-else>condition is false</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { showText: false } }, }); </script> </body> </html>