Tomáš Kukumberg 1 年之前
父节点
当前提交
9f96f86202
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/docs/src/en/directives/model.md

+ 1 - 1
packages/docs/src/en/directives/model.md

@@ -13,7 +13,7 @@ Here's a simple example of using `x-model` to bind the value of a text field to
 <div x-data="{ message: '' }">
     <input type="text" x-model="message">
 
-    <span x-text="message">
+    <span x-text="message"></span>
 </div>
 ```