|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 6 | + <meta name="viewport" content="width=device-width,initial-scale=1.0" /> |
| 7 | + <link rel="icon" href="<%= BASE_URL %>favicon.ico" /> |
| 8 | + <title><%= htmlWebpackPlugin.options.title %></title> |
| 9 | + |
| 10 | + <link href="https://cdn.bootcss.com/normalize/7.0.0/normalize.min.css" rel="stylesheet"> |
| 11 | + <link href="https://cdn.bootcss.com/tailwindcss/0.7.3/utilities.min.css" rel="stylesheet"> |
| 12 | + <link href="https://cdn.bootcss.com/element-ui/2.12.0/theme-chalk/index.css" rel="stylesheet"> |
| 13 | + |
| 14 | + <!--[if lt IE 9]> |
| 15 | + <script src="https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script> |
| 16 | + <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> |
| 17 | + <![endif]--> |
| 18 | + |
| 19 | +</head> |
| 20 | +<body> |
| 21 | + |
| 22 | +<noscript> |
| 23 | + <strong>We're sorry but multi-pages doesn't work properly without JavaScript |
| 24 | + enabled. Please enable it to continue.</strong> |
| 25 | +</noscript> |
| 26 | + |
| 27 | +<% if (htmlWebpackPlugin.options._browserPage && NODE_ENV != 'production') { %> |
| 28 | +<ul> |
| 29 | + <% for(var i=0; i< htmlWebpackPlugin.options._browserPage.length; i++) {%> |
| 30 | + <li> |
| 31 | + <a href='<%= htmlWebpackPlugin.options._browserPage[i] %>'> |
| 32 | + <%= htmlWebpackPlugin.options._browserPage[i] %> |
| 33 | + </a> |
| 34 | + </li> |
| 35 | + <% } %> |
| 36 | +</ul> |
| 37 | + |
| 38 | +<hr /> |
| 39 | +<% } %> |
| 40 | + |
| 41 | +<div id="app"></div> |
| 42 | +<!-- built files will be auto injected --> |
| 43 | + |
| 44 | +<!-- jQuery =========== --> |
| 45 | +<script src="http://apps.bdimg.com/libs/jquery/1.9.1/jquery.min.js"></script> |
| 46 | + |
| 47 | +<!-- Vue ============== --> |
| 48 | +<script src="https://cdn.bootcss.com/vue/2.6.10/vue.min.js"></script> |
| 49 | +<!--<script src="https://cdn.bootcss.com/vue/2.6.10/vue.common.dev.js"></script>--> |
| 50 | +<!--<script src="https://cdn.bootcss.com/vue/2.6.10/vue.esm.js"></script>--> |
| 51 | +<!--<script src="https://cdn.bootcss.com/vue/2.6.10/vue.esm.browser.min.js"></script>--> |
| 52 | +<!-- Vue Runtime ====== --> |
| 53 | +<!--<script src="https://cdn.bootcss.com/vue/2.6.10/vue.runtime.esm.js"></script>--> |
| 54 | +<!--<script src="https://cdn.bootcss.com/vue/2.6.10/vue.runtime.min.js"></script>--> |
| 55 | + |
| 56 | +<!-- Element UI ======= --> |
| 57 | +<script src="https://cdn.bootcss.com/element-ui/2.8.2/index.js"></script> |
| 58 | +<script src="https://cdn.bootcss.com/element-ui/2.8.2/locale/zh-CN.min.js"></script> |
| 59 | + |
| 60 | +<script> |
| 61 | + Vue.config.productionTip = false |
| 62 | +</script> |
| 63 | + |
| 64 | +</body> |
| 65 | +</html> |
0 commit comments