खोज…


परिचय

vue- रूटर vue.js. के लिए आधिकारिक तौर पर समर्थित रूटिंग लाइब्रेरी है

वाक्य - विन्यास

  • <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. -->

बेसिक रूटिंग

वीयू-राउटर के साथ उठने और चलने का सबसे आसान तरीका सीडीएन के माध्यम से प्रदान किए गए संस्करण का उपयोग करना है।

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>

जावास्क्रिप्ट (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
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow