docsify/docs/vue.md

100 lines
2.1 KiB
Markdown
Raw Normal View History

2017-02-13 22:43:58 +08:00
# Compatible with Vue
2017-03-10 05:19:07 +08:00
You can write Vue components directly in the Markdown file, and it will be parsed. You can use this feature to write vue demo and documentation together.
2017-02-13 22:43:58 +08:00
## Basic usage
2017-03-10 05:19:07 +08:00
Load the Vue in `./index.html`.
2017-02-13 22:43:58 +08:00
```html
<script src="//unpkg.com/vue"></script>
<script src="//unpkg.com/docsify"></script>
2017-03-10 05:19:07 +08:00
<!-- or use the compressed files -->
<script src="//unpkg.com/vue/dist/vue.min.js"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
2017-02-13 22:43:58 +08:00
```
2017-03-10 05:19:07 +08:00
Then you can immediately write Vue code at Markdown file. `new Vue({ el: '#main' })` script is executed by default to create instance.
2017-02-13 22:43:58 +08:00
*README.md*
```markdown
# Vue guide
`v-for` usage.
```html
<ul>
<li v-for="i in 10">{{ i }}</li>
</ul>
``
<ul>
<li v-for="i in 10">{{ i }}</li>
</ul>
```
You can manually initialize a Vue instance.
*README.md*
```markdown
# Vue demo
<div>hello {{ msg }}</div>
<script>
new Vue({
2017-02-18 19:36:28 +08:00
el: '#main',
2017-02-13 22:43:58 +08:00
data: { msg: 'Vue' }
})
</script>
```
!> In a Markdown file, only the script within the first script tag is executed.
## Combine Vuep to write playground
[Vuep](https://github.com/QingWei-Li/vuep) is a component for rendering Vue components with live editor and preview. Supports Vue component spec and JSX.
*index.html*
```html
2017-03-11 18:27:43 +08:00
<!-- inject css file -->
<link rel="stylesheet" href="//unpkg.com/vuep/dist/vuep.css">
<!-- inject javascript file -->
2017-02-13 22:43:58 +08:00
<script src="//unpkg.com/vue"></script>
<script src="//unpkg.com/vuep"></script>
<script src="//unpkg.com/docsify"></script>
2017-03-10 05:19:07 +08:00
<!-- or use the compressed files -->
<script src="//unpkg.com/vue/dist/vue.min.js"></script>
<script src="//unpkg.com/vuep/dist/vuep.min.js"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
2017-02-13 22:43:58 +08:00
```
*README.md*
```markdown
# Vuep
<vuep template="#example"></vuep>
2017-03-11 18:16:34 +08:00
<script v-pre type="text/x-template" id="example">
2017-02-13 22:43:58 +08:00
<template>
<div>Hello, {{ name }}!</div>
</template>
<script>
2017-02-21 14:05:58 +08:00
module.exports = {
2017-02-13 22:43:58 +08:00
data: function () {
return { name: 'Vue' }
}
}
</script>
</script>
```
2017-03-10 05:19:07 +08:00
?> Example Refer to the [vuep documentation](https://qingwei-li.github.io/vuep/).