使用vue.js 1.0
我开始使用这样的路由器:
router.start(App, 'app');
但这对vue.js 2.0
不起作用了。根据文档,我现在就这样做:
const app = new Vue({
router
}).$mount('app');
是否有可能以旧的方式做到这一点?因为现在我要在我的laravel blade
文件中执行此操作:
<div id="app">
<router-view
transition
transition-mode="out-in">
</router-view>
</div>
但我想在一个组件中做到这一点。
答案 0 :(得分:0)
您可以使用transition
来自文档的示例
<template>
<div id="demo">
<button v-on:click="show = !show">
Toggle
</button>
<transition name="fade">
<p v-if="show">hello</p>
</transition>
</div>
</template>
<script>
new Vue({
el: '#demo',
data: {
show: true
}
})
</script>
<style>
.fade-enter-active, .fade-leave-active {
transition: opacity .5s
}
.fade-enter, .fade-leave-active {
opacity: 0
}
</style>