Last active
March 18, 2017 07:25
-
-
Save egoist/f4f590a1e9d4a0afc2d62eae6db8789f to your computer and use it in GitHub Desktop.
docute post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docute.init({ | |
nav: [{ | |
path: '/get-started', | |
markdown: '**click** <button @click="count++">{{count}}</button>', | |
component: { | |
data: () => ({count: 0}) | |
} | |
}] | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment