Skip to content

feat(api): introduce inspectSetupState #450

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into feat/api-inspect-state
  • Loading branch information
alexzhang1030 authored Sep 4, 2024
commit 8fbdfaf02bfbd17d1d7dd2554ca8ad588afede61
7 changes: 6 additions & 1 deletion packages/playground/basic/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,16 @@ const routes: RouteRecordRaw[] = [
component: () => import('./pages/CircularState.vue'),
name: 'circular-state',
},
{
path: '/interval-update',
component: () => import('./pages/IntervalUpdate.vue'),
name: 'interval-update',
},
{
path: '/inspect-custom-state',
component: () => import('./pages/InspectCustomState'),
name: 'inspect-custom-state',
},
}
]

const router = createRouter({
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.