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>
 ```