Vev Help Center
Editor
Roadmap
Searchβ¦
π
Start Here
Getting Started
π¨
Creating Projects in Vev
π
Shortcuts
π€
Examples, Output
π
Organize
β
FAQs
Design Editor
π¨
Meet the Design Editor
Elements
Sections
Addons
Animations
Layout & Design
Collaborative tools
Import from Figma
Templates
Creating Templates
Using Templates
Content Editor
βοΈ Meet the Content Editor
Edit Elements
Edit Sections
Edit Links
Code Editor
π©πΎβπ» Meet the Code Editor
Code - Extending Vev
Tips & Snippets
Reference Docs
Hooks
Hosting
π
Connect Domain
Hosting on Your Server
Embed your project
Staging domain
Reference docs
Vev Sandbox
Privacy and Security
INTEGRATIONS
How Does It Work?
Integrating From Your Hosting
Integrating From Your Workspace
Managing Integrations from Publish Destinations
List of Integrations
Accounts
π
Workspaces
π€
Users
π₯
Teams
π«
Support
π§Ύ
Subscription
π³
Billing
Resources
Security
Community
Videos
Request a Feature
Powered By
GitBook
Tips & Snippets
Get some good Tips & Snippets here on the Code Editor in Vev
Navigating to a page in Vev
To navigate to a page in Vev by pageKey, add this in your Widget function code.
1
const [route, dispatch] = useGlobalStore((store, dispatch) => [store.route, dispatch]);
Copied!
1
function navigate(vevPageKey:string) {
2
dispatch('route', {pageKey: vevPageKey:string});
3
// window.history.pushState(null, null, window.location.pathname);
4
// You may want to adjust window.history as well, depending on use-case
5
}
6
β
Copied!
β
Previous
Using Vev plugins
Next - Code Editor
Reference Docs
Last modified
8mo ago
Copy link