Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove reactism from vue adapter page #5386

Merged
merged 1 commit into from Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 3 additions & 5 deletions docs/framework/vue/vue-table.md
Expand Up @@ -12,14 +12,12 @@ The `@tanstack/vue-table` adapter is a wrapper around the core table logic. Most

Takes an `options` object and returns a table.

```tsx
```ts
import { useVueTable } from '@tanstack/vue-table'

function App() {
const table = useVueTable(options)
const table = useVueTable(options)
// ...render your table

// ...render your table
}
```

### `FlexRender`
Expand Down