setupin 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/README.zh-CN.md +4 -4
- package/dist/main.js +21 -21
- package/package.json +50 -50
package/README.md
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
## 😏 Why setupin
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
**setupin** provides a writing experience similar to Vue Single File Components ([SFC](https://vuejs.org/api/sfc-spec.html#sfc-syntax-specification)),
|
|
15
|
+
allows you to write vue's \<script **setup**>**in** HTML.
|
|
16
16
|
|
|
17
17
|
- **Quick Experience**: Allow users to quickly experiment with Vue's new features in HTML and feel its charm.
|
|
18
18
|
- **Easy Development**: Provide a convenient way to rapidly develop small applications without complex configurations.
|
|
@@ -35,13 +35,13 @@ try it on
|
|
|
35
35
|
|
|
36
36
|
## 🥰 CDN
|
|
37
37
|
|
|
38
|
-
**unpkg**
|
|
38
|
+
- **unpkg**
|
|
39
39
|
|
|
40
40
|
```html
|
|
41
41
|
<script src="https://unpkg.com/setupin"></script>
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
**jsdelivr**
|
|
44
|
+
- **jsdelivr**
|
|
45
45
|
|
|
46
46
|
```html
|
|
47
47
|
<script src="https://cdn.jsdelivr.net/npm/setupin"></script>
|
package/README.zh-CN.md
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
## 😏 为什么选择 setupin
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
**setupin** 提供类似于 Vue 单文件组件 ([SFC](https://vuejs.org/api/sfc-spec.html#sfc-syntax-specification)) 的书写体验,
|
|
15
|
+
让你可以在 HTML 中编写 vue 的 \<script setup>。
|
|
16
16
|
|
|
17
17
|
- **快速体验**:让用户可以快速在 HTML 中尝试 Vue 的新特性,感受其魅力。
|
|
18
18
|
- **简易开发**:提供便捷的方式,助力快速开发小型应用,无需繁琐的配置。
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
|
|
35
35
|
## 🥰 CDN
|
|
36
36
|
|
|
37
|
-
**unpkg**
|
|
37
|
+
- **unpkg**
|
|
38
38
|
|
|
39
39
|
```html
|
|
40
40
|
<script src="https://unpkg.com/setupin"></script>
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
**jsdelivr**
|
|
43
|
+
- **jsdelivr**
|
|
44
44
|
|
|
45
45
|
```html
|
|
46
46
|
<script src="https://cdn.jsdelivr.net/npm/setupin"></script>
|