screen_rotation
Copied to Clipboard
<html> <head> <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js" } } </script> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous"> <body> <div id="app" class="container-fluid"> <h2>String includes() function using Vue js</h2> <P>Paragarph : {{text}}</P> <button @click='myFunction' class='btn btn-primary'>Search String </button> <p></p> <p>{{result}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ text : 'India won both the 1983 and 2011 ODI World Cup.', result : '' } }, methods:{ myFunction(){ this.result = this.text.includes("2011"); } } }).mount('#app') </script> </body> </head> </html>