@vuetify/v0 0.0.2 → 0.0.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 CHANGED
@@ -43,7 +43,6 @@ yarn add @vuetify/v0
43
43
  - **`useHydration`** - SSR hydration helpers
44
44
  - **`useIntersectionObserver`** - Intersection observer utilities
45
45
  - **`useKeydown`** - Keyboard event handling
46
- - **`useLayout`** - Layout management utilities
47
46
  - **`useLocale`** - Internationalization support
48
47
  - **`useLogger`** - Development logging utilities
49
48
  - **`useMutationObserver`** - DOM mutation observation
@@ -127,8 +126,8 @@ const currentStep = ref(0)
127
126
  <!-- Group selection -->
128
127
  <Group v-model="selectedItems" multiple>
129
128
  <template #default="{ select, isSelected }">
130
- <button
131
- v-for="item in items"
129
+ <button
130
+ v-for="item in items"
132
131
  :key="item.id"
133
132
  @click="select(item.id)"
134
133
  :class="{ active: isSelected(item.id) }"
@@ -198,23 +197,23 @@ const handleSubmit = async () => {
198
197
  <button @click="setTheme(theme === 'light' ? 'dark' : 'light')">
199
198
  Toggle Theme ({{ theme }})
200
199
  </button>
201
-
200
+
202
201
  <form @submit.prevent="handleSubmit">
203
- <input
204
- v-model="email"
205
- type="email"
202
+ <input
203
+ v-model="email"
204
+ type="email"
206
205
  placeholder="Email"
207
206
  :style="{ borderColor: colors.primary }"
208
207
  />
209
208
  <div v-if="errors.email" class="error">{{ errors.email[0] }}</div>
210
-
211
- <input
212
- v-model="password"
213
- type="password"
209
+
210
+ <input
211
+ v-model="password"
212
+ type="password"
214
213
  placeholder="Password"
215
214
  />
216
215
  <div v-if="errors.password" class="error">{{ errors.password[0] }}</div>
217
-
216
+
218
217
  <button type="submit">Submit</button>
219
218
  </form>
220
219
  </div>
@@ -249,4 +248,4 @@ MIT License
249
248
 
250
249
  ---
251
250
 
252
- Built with ❤️ for the Vue ecosystem. Part of the Vuetify family.
251
+ Built with ❤️ for the Vue ecosystem. Part of the Vuetify family.