添加 手势识别demo完成

This commit is contained in:
rucky
2021-12-24 19:18:22 +08:00
parent a8cca89108
commit 56107508f9
16 changed files with 939 additions and 228 deletions

View File

@@ -1,13 +1,16 @@
<template>
<div id="app">
<!-- 需要缓存的 -->
<keep-alive>
<router-view v-if="$route.meta.keepAlive" />
</keep-alive>
<!-- 不需要缓存的 -->
<router-view v-if="!$route.meta.keepAlive" />
</div>
<div id="app">
<!-- 需要缓存的 -->
<keep-alive>
<router-view v-if="$route.meta.keepAlive" />
</keep-alive>
<!-- 不需要缓存的 -->
<router-view v-if="!$route.meta.keepAlive" />
</div>
</template>
<style>
#app {
min-height: 100%;
}
</style>