-
- export default {
- data() {
- return {
- screenWidthNo:'',
- }
- },
-
-
- mounted() {
- this.getData()
- this.screenWidthNo = document.body.clientWidth;
- window.onresize = () => {
- return (() => {
- this.screenWidthNo = document.body.clientWidth;
- })();
- };
-
-
- },
-
- }