main.vue修改
<template>
<div id="mainlayer" :class="{ 'is-sheet': isSheet }">
<div id="app">
<keep-alive :include="include">
<router-view v-if="$route.meta.keepAlive" />
</keep-alive>
<router-view v-if="!$route.meta.keepAlive" />
</div>
</div>
</template>
路由增加
name: '新品研发',
path: '/sync_products',
component: newProducts,
meta: {
keepAlive: true,
deepth: 1
}