whychdw
2019-12-23 ae91eb9a1a1c9aebdabe12c3806b787bfaaefb6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict';
 
var lazyload = new LazyLoad(document);
function loadComplete() {
 
  //instead of document.read() 
 
}
function loadscript() {
  lazyload.js([
  // 'js/zepto.js',
  // 'js/bui.js',
  // 'css/highchart/highcharts.js',
  // 'js/const_var.js',
  // 'js/common_functions.js',
  'js/vue.min.js', 'css/iview/iview.min.js', 'js/components.js', 'index.js'], loadComplete);
}
 
setTimeout(loadscript, 5);