Vue.js                
            vue-router
        
        
            
    Szukaj…
Wprowadzenie
vue-router to oficjalnie obsługiwana biblioteka routingu dla vue.js.
Składnia
- <router-link to="/path">Link Text</router-link> <!-- Creates a link to the route that matches the path -->
- <router-view></router-view> <!-- Outlet for the currently matched route. It's component will be rendered here. -->
Podstawowy routing
Najłatwiejszym sposobem na rozpoczęcie pracy z vue-routerem jest skorzystanie z wersji dostarczonej przez CDN.
HTML:
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<div id="router-example">
    <router-link to="/foo">Link to Foo route</router-link>
    <router-view></router-view>
</div>
JavaScript (ES2015):
const Foo = { template: <div>This is the component for the Foo route</div> }
const router = new VueRouter({
    routes: [
       { path: '/foo', component: Foo}
    ]
})
const routerExample = new Vue({
    router
}).$mount('#router-example')
Modified text is an extract of the original Stack Overflow Documentation
        Licencjonowany na podstawie CC BY-SA 3.0
        Nie związany z Stack Overflow