markdown 组件 - 简介
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 组件 - 简介相关的知识,希望对你有一定的参考价值。
## Rules
Use **camelCase** to naming propos
## Folder structure
- src
- components
- templates
- widgets
- user
- plugins
- views
- App.vue
## Imports
```js
/* Relative path*/
import Menu from './components/Menu.vue'
/* Absolute path (from /src folder) */
import Menu from '@/components/Menu.vue'
```
## Noming components
```html
<Menu />
<Carousel />
<Footer />
```
```js
import Menu from '@/components/Menu.vue'
import Carousel from '@/components/Carousel.vue'
import Footer from '@/components/Footer.vue'
```
以上是关于markdown 组件 - 简介的主要内容,如果未能解决你的问题,请参考以下文章
Markdown 简介及基础语法
MarkDown的使用简介
MarkDown 简介
Markdown简介
当富文本遇上Markdown - Milkdown简介
markdown 角度 - 将组件传递到组件中