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"> <h3>Vue Js screen.width Property</h3> <p>Get Screen Size Vue Js</p> <button @click="myFunction">click me</button> <p>{{getWidth}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data(){ return{ getWidth:'' } }, methods:{ myFunction(){ this.getWidth = screen.width +"px"; } } }).mount('#app') </script> </body> </head> </html>