Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darianstlex/vike-vue-effector
Vike+Vue+Effector with vike-vue
https://github.com/darianstlex/vike-vue-effector
effector ssr vike vike-vue vue
Last synced: 2 months ago
JSON representation
Vike+Vue+Effector with vike-vue
- Host: GitHub
- URL: https://github.com/darianstlex/vike-vue-effector
- Owner: darianstlex
- Created: 2024-08-30T20:59:09.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-11-16T18:30:02.000Z (2 months ago)
- Last Synced: 2024-11-16T19:29:35.928Z (2 months ago)
- Topics: effector, ssr, vike, vike-vue, vue
- Language: TypeScript
- Homepage:
- Size: 497 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About this app
This app is ready to start. It's powered by [Vike](https://vike.dev), [Vue](https://vuejs.org/guide/quick-start.html) and [Effector](https://effector.dev/).### `/pages/+config.ts`
Such `+` files are [the interface](https://vike.dev/config) between Vike and your code. It defines:
- A default [`` component](https://vike.dev/Layout) (that wraps your [`` components](https://vike.dev/Page)).
- A default [`title`](https://vike.dev/title).
- Global [`` tags](https://vike.dev/head-tags).### Routing
[Vike's built-in router](https://vike.dev/routing) lets you choose between:
- [Filesystem Routing](https://vike.dev/filesystem-routing) (the URL of a page is determined based on where its `+Page.vue` file is located on the filesystem)
- [Route Strings](https://vike.dev/route-string)
- [Route Functions](https://vike.dev/route-function)### `/pages/_error/+Page.vue`
The [error page](https://vike.dev/error-page) which is rendered when errors occur.
### `/pages/+onPageTransitionStart.ts` and `/pages/+onPageTransitionEnd.ts`
The [`onPageTransitionStart()` hook](https://vike.dev/onPageTransitionStart), together with [`onPageTransitionEnd()`](https://vike.dev/onPageTransitionEnd), enables you to implement page transition animations.
### SSR
SSR is enabled by default. You can [disable it](https://vike.dev/ssr) for all your pages or only for some pages.
### HTML Streaming
You can enable/disable [HTML streaming](https://vike.dev/streaming) for all your pages, or only for some pages while still using it for others.