We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11cc999 commit 98bda99Copy full SHA for 98bda99
README.md
@@ -40,7 +40,17 @@ createApp(App)
40
.use(MyLibPlugin) //use plugin
41
42
```
43
+In the vite config, vue will require the experimental useModel:
44
45
+```
46
+ plugins: [
47
+ vue({
48
+ script: {
49
+ defineModel: true,
50
+ },
51
+ }),
52
+ ],
53
54
55
<!-- TODO test -->
56
You should also be able to use tailwind directly instead of importing the styles.
@@ -92,6 +102,13 @@ Everything can just be done from the config. Nuxt will automatically import the
92
102
],
93
103
modules: [
94
104
["@alanscodelog/vue-components/nuxt"],
95
- ]
105
106
+ vite: {
107
+ vue: {
108
109
110
111
+ }
112
96
113
97
114
0 commit comments