Caleb Porzio 4 年之前
父节点
当前提交
cb0ec65242
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/docs/src/en/alpine-101.md

+ 1 - 1
packages/docs/src/en/alpine-101.md

@@ -12,7 +12,7 @@ Using a text editor, fill the file with these contents:
 ```html
 <html>
 <head>
-    <script defer src="https://unpkg.com/alpinejs@3.0.1/dist/cdn.min.js"></script>
+    <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
 </head>
 <body>
     <h1 x-data="{ message: 'I ❤️ Alpine' }" x-text="message"></h1>