代碼
提交代碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="app">
<keep-alive>
<component :is="currentView"></component>
</keep-alive>
<button @click="changeView('A')">切換到A</button>
<button @click="changeView('B')">切換到B</button>
</div>
</body>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script type="text/javascript">
Vue.component('ComponentA', {
template: '<div> 組件 A </div>',
activated() {
console.log('組件A 被添加')
},
deactivated() {
console.log('組件A 被移除')
}
})
Vue.component('ComponentB', {
template: '<div> 組件 B </div>',
activated() {
console.log('組件B 被添加')
},
deactivated() {
console.log('組件B 被移除')
}
})
var vm = new Vue({
el: '#app',
data() {
return {
currentView: 'ComponentB'
}
},
methods: {
changeView(name) {
this.currentView = `Component${name}`
}
}
})
</script>
</html>
運(yùn)行結(jié)果