タイトル: 画面サイズの取得方法
SEOタイトル: 【Vue.js】画面サイズの取得方法
| この記事の要点 |
|---|
|
|
<template> <div> {{ windowWidth }} {{ windowHeight }} </div> </template> <script> export default { data() { return { windowWidth: window.innerWidth, windowHeight: window.innerHeight, } }, methods: { getWindowSize: function() { this.windowWidth = window.innerWidth; this.windowHeight = window.innerHeight; } }, mounted() { window.addEventListener('resize', this.getWindowSize); }, } </script> |