vue-stacked-ui
provides "Stacked UI" at the top of vue-router(v4).
It is possible to realize a UI that allows users to drill down through data, sometimes seen in dashboards.
Following features,
- Allows infinite number of pages to be stacked.
- URL-first design. (URL representing stack state)
- Browser history support.
- Route params passed to page by vue-router.
- Provides callback to block when "pop" Stack.
- Vue 3
- vue-router 4
npm install vue-stacked-ui
import router from './router'
import { stackedUI } from 'vue-stacked-ui'
import 'vue-stacked-ui/dist/vue-stacked-ui.css'
// Then use it as Vue plugin.
app.use(stackedUI, {router: router});
<StackRootView />
<!-- Reserve Drawer Area -->
<div id="drawer_wrapper">
<StackView />
</div>
<!-- Reserve Drawer Area -->
<StackPush to="/about">stack push component</StackPush>
<StackPop>stack push component</StackPop>
import { useStack } from "vue-stacked-ui"
const stack = useStack();
stack.push("/about/hoge")
stack.pop()
props.currentStack?.onBeforePop(() => {
return confirm("Realy close stack?")
});