egoist
3/18/2017 - 6:49 AM

docute post

docute post

<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>docs</title>
  <link rel="stylesheet" href="https://unpkg.com/docute@next/dist/docute.css">
</head>
<body>
  <div id="app"></div>
  <script src="https://unpkg.com/docute@next"></script>
  <script src="config.js"></script>
</body>
</html>
docute.init({
  nav: [{
    path: '/get-started',
    markdown: '**click** <button @click="count++">{{count}}</button>',
    component: {
      data: () => ({count: 0})
    }
  }]
})