VUE中最简单的实现浏览器放大缩小页面不乱
在app.vue中写入
<template>
<div id="app" style="min-width: 1900px;max-width: 2560px">
<router-view/>
</div>
</template>
'''
min-width: 1900px; # 最小宽度
max-width: 2560px # 最大宽度
根据实际设置
'''
在app.vue中写入
<template>
<div id="app" style="min-width: 1900px;max-width: 2560px">
<router-view/>
</div>
</template>
'''
min-width: 1900px; # 最小宽度
max-width: 2560px # 最大宽度
根据实际设置
'''