v-for
的用法
Text for GitHub
2 + 2 = {{ 2 + 2 }}
继续?
{
data() {
return {
message: 'Hello, World!'
};
}
}
测试
<!-- 在docsify中显示消息,在其他地方显示 "{{ message }}"(例如GitHub) -->
{{ message }}
<!-- 在docsify中显示消息,在其他地方隐藏(例如GitHub) -->
<p v-text="message"></p>
<!-- 在docsify中显示消息,在其他地方显示 text(例如GitHub) -->
<p v-text="message">Text for GitHub</p>
graph TB
s(开始/结束)
style s rx: 10, ry: 10