screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <div id="app"> <h3>Vue Get Device Memory</h3> <p>Device Memory: {{ deviceMemory }} GB</p> </div> <script type="module"> const app = Vue.createApp({ data() { return { deviceMemory: navigator.deviceMemory } } }); app.mount('#app'); </script> </body> </html>