Ep16#09 - Theo dõi sự thay đổi của params trên routes Vue.js (ok)
<template>
<div id="app">
<p>App</p>
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
<router-link to="/detail/1">Detail 1</router-link>
<router-link to="/detail/2">Detail 2</router-link>
<router-view></router-view>
</div>
</template>
<script>
export default {
methods: {
},
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
nav {
padding: 30px;
}
nav a {
font-weight: bold;
color: #2c3e50;
}
nav a.router-link-exact-active {
color: #42b983;
}
</style>


Previous==== START Học Vue JS 2 cơ bản - RHP Team ===NextEp17#03 - Đùa đấy đây mới là vuex nè cả nhà (ok)
Last updated