screen_rotation
Copied to Clipboard
<html> <head> <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js" } } </script> <body> <div id="app"> <h2>Vue js string.includes(substring) Method </h2> <p>Check if a Substring is Present in a Given String in Vue Js</p> <p>{{string}}</p> <button @click="myFunction">click me</button> <p>{{results}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ string : 'SarkariNaukariExams', substring:'Exams', results:"" } }, methods:{ myFunction(){ this.results = this.string.includes(this.substring); }, } }).mount('#app') </script> </body> </head> </html>