Vuelinksnip

From rbachwiki
Revision as of 23:47, 17 October 2018 by Bacchas (talk | contribs) (Created page with "<pre> // this is in the route.js file { path: 'user/:id', component: User}, // to get the info <template> <p>Loaded ID:{{id}}</p> </template> <script> export default { data(...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
// this is in the route.js file
{ path: 'user/:id', component: User},

// to get the info
<template>
<p>Loaded ID:{{id}}</p>
</template>

<script>
export default {
data(){
  return{
    id: this.$route.params.id
  }
}
</script>


VueJs Routing