Skip to content

Commit 4786cba

Browse files
authored
docs: code block formatting from html to vue (#301)
fix: code block formatting in quick-start.md to `vue` instead of `html`
1 parent ee8326d commit 4786cba

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/framework/vue/quick-start.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ id: quick-start
66
The basic vue app example to get started with the TanStack vue-store.
77

88
**App.vue**
9-
```html
9+
```vue
1010
<script setup>
1111
import Increment from './Increment.vue';
1212
import Display from './Display.vue';
@@ -43,7 +43,7 @@ export function updateState(animal) {
4343
```
4444

4545
**Display.vue**
46-
```html
46+
```vue
4747
<script setup>
4848
import { useStore } from '@tanstack/vue-store';
4949
import { store } from './store';
@@ -59,7 +59,7 @@ const count = useStore(store, (state) => state[props.animal]);
5959
```
6060

6161
**Increment.vue**
62-
```html
62+
```vue
6363
<script setup>
6464
import { store, updateState } from './store';
6565

0 commit comments

Comments
 (0)