xxxxxxxxxx
1
2
<html>
3
<head>
4
<meta charset="UTF-8">
5
<!-- import CSS -->
6
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
7
</head>
8
<body>
9
<div id="app">
10
<el-button @click="visible = true">Button</el-button>
11
<el-dialog :visible.sync="visible" title="Hello world">
12
<p>Try Element</p>
13
</el-dialog>
14
</div>
15
</body>
16
<!-- import Vue before Element -->
17
<script src="https://unpkg.com/vue/dist/vue.js"></script>
18
<!-- import JavaScript -->
19
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
20
<script>
21
new Vue({
22
el: '#app',
23
data: function() {
24
return { visible: false }
25
}
26
})
27
</script>
28
</html>
已复制