You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- import "./../common/css/common.less";
- import "./index.less";
- import vhCheck from "vh-check"; //移动端浏览器100vh高度不一致
- import App from './App.js';
-
- // swiper的css目前环境解析不出来,放static下,不走webpack
- //import 'swiper/swiper-bundle.css';
-
- vhCheck();
- //禁止浏览器刷新后回到上一个页面滚动位置
- if ('scrollRestoration' in history) {
- history.scrollRestoration = 'manual';
- }
-
- new App();
|