bootstrap-vue-treeview
Version:
A tree view component for Bootstrap 4 and Vue.js 2.x.
27 lines • 1.01 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>v2-tree</title>
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<body>
<main class="container">
<div id="app"></div>
</main>
<script src="//cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="//unpkg.com/babel-polyfill@latest/dist/polyfill.min.js"></script>
<script src="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.js"></script>
<script src="./vue-context-menu.js"></script>
<script src="./bootstrap-vue-treeview.js"></script>
<script src="./index.js"></script>
<style>
body {
padding-top: 40px;
}
</style>
</body>
</html>