# 语法
::: tip
This is a tip
:::
1
2
3
2
3
TIP
This is a tip
::: warning
This is a warning
:::
1
2
3
2
3
WARNING
This is a warning
::: danger
This is a dangerous warning
:::
1
2
3
2
3
DANGER
This is a dangerous warning
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
1
2
3
4
5
2
3
4
5
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
export default {
data () {
return {
msg: 'Highlighted!'
}
}
}
1
2
3
4
5
6
7
2
3
4
5
6
7
{{ 1 + 1 }}
1
2
<span v-for="i in 3">{{ i }} </span>
1
1 2 3
### Badge <Badge text="beta" type="warn"/> <Badge text="0.10.1+"/>
1