Vue+element-ui的快速开发模板

呼,都有大半年没开发过HTML了,怀念之前天天加班的时间(逃

开玩笑的啦

不过也是,确实是很久没开发了,但是思路还是有的,手呢,也确实是非常的生疏了,呼~~~

好好学习了啦,天天向上拉!!!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!-- Vue核心 -->
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<!-- 引入样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- 引入组件库 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script src="http://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
</head>
<body>
<div id="app">
<!-- placeholder="请输入内容" 默认填充-->
<el-input v-model="input"></el-input>
<button id="but"></button>
</div>
</body>

<script type="text/javascript">
var vue = new Vue({
el : "#app",
data: {
input: '666',
}
});

</script>
</html>
谢谢,爱你么么哒