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-if rendering</h3> <p>If the condition is true, the text will be displayed. </p> <p v-if="showText">Font Awesome icons</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { showText: true } }, }); </script> </body> </html>