mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 07:40:17 +08:00
19 lines
441 B
Plaintext
19 lines
441 B
Plaintext
|
|
# Routing
|
|
|
|
Routing is a popular way to switch views in an application. This page offers some guidance around how to do that.
|
|
|
|
## Vue
|
|
|
|
The recommended approach for routing in Vue is [Hash Mode](https://next.router.vuejs.org/guide/essentials/history-mode.html#hash-mode):
|
|
|
|
```js
|
|
import { createRouter, createWebHashHistory } from 'vue-router'
|
|
|
|
const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes: [
|
|
//...
|
|
],
|
|
})
|
|
``` |