mirror of
https://github.com/weibangtuo/vue-tree.git
synced 2025-12-08 19:46:25 +00:00
19 lines
544 B
HTML
19 lines
544 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Vue Tree</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="../src/tree.vue.css">
|
|
</head>
|
|
<body>
|
|
<div id="demo">
|
|
<h1>{{title}}</h1>
|
|
<vue-tree :option="option"></vue-tree>
|
|
</div>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.21/vue.js"></script>
|
|
<script src="../src/tree.vue.js"></script>
|
|
<script src="demo.js"></script>
|
|
</body>
|
|
</html> |