Skip to content

Commit

Permalink
Merge pull request #8 from TanStack/add-vue-docs-scaffolding
Browse files Browse the repository at this point in the history
docs: scaffold initial todo Vue docs
  • Loading branch information
crutchcorn committed Aug 31, 2023
2 parents 12d66c2 + d33d16c commit ed6f2a8
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1 deletion.
23 changes: 23 additions & 0 deletions docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,29 @@
]
}
]
},
{
"framework": "vue",
"menuItems": [
{
"label": "Getting Started",
"children": [
{
"label": "Quick Start",
"to": "framework/vue/quick-start"
}
]
},
{
"label": "API Reference",
"children": [
{
"label": "useStore",
"to": "framework/vue/reference/useStore"
}
]
}
]
}
]
}
6 changes: 6 additions & 0 deletions docs/framework/vue/quick-start.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Quick Start
id: quick-start
---

# TODO
6 changes: 6 additions & 0 deletions docs/framework/vue/reference/useStore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Use Store
id: useStore
---

Please see [/packages/vue-store/src/index.tsx](https://github.com/tanstack/store/tree/main/packages/vue-store/src/index.ts)
8 changes: 7 additions & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@ npm install @tanstack/react-store

TanStack Store is compatible with React v16.8+ and is currently only compatible with ReactDOM only. If you would like to contribute to the React Native adapter, please reach out to us on [Discord](https://tlinz.com/discord).

## Vue
## Vue

```sh
npm install @tanstack/vue-store
```

TanStack Store is compatible with Vue 2 and 3.

0 comments on commit ed6f2a8

Please sign in to comment.