no message

Former-commit-id: ce1e8da6144a0b9fb947336d56df1deba2d7ad92 [formerly ce1e8da6144a0b9fb947336d56df1deba2d7ad92 [formerly ce1e8da6144a0b9fb947336d56df1deba2d7ad92 [formerly ce1e8da6144a0b9fb947336d56df1deba2d7ad92 [formerly 6953b0ad96b8fce65908dacfc7d93d2fa4cd232a [formerly dd99c86232a5da894db614f3afb11014bd0d3470]]]]]
Former-commit-id: c32d5c983c5527bf6b410bcfdd29d48dd856fac4
Former-commit-id: f58431af307f27e31a19969b40ca5db4bf88ad0e
Former-commit-id: aca490422b0abeeaf53398ed6f88bb8e841f152d [formerly 0cd810bf8ee1c2c95e52f279b4f7b6d29899bfd5]
Former-commit-id: b8fbd8eead9a8a382d23c458c1ea3eca37e0b930
Former-commit-id: 9f8464014a4c2e4aa0d3be177c180afd0e86ea69
Former-commit-id: 1149c7d49ae85f4ec8b38db96938526ecff34ac5
Former-commit-id: ecad8d328d89f6494ed701eb3197a312827aca75
Former-commit-id: 43abd5a1fcf08ce7afa02d38c1d3709cf2a427d1
This commit is contained in:
liyang
2018-06-30 20:23:50 +08:00
parent 436c927105
commit 3bfeabea9f
6 changed files with 49 additions and 21 deletions

View File

@@ -1,17 +0,0 @@
<template>
<d2-container type="full">
page-name
</d2-container>
</template>
<script>
export default {
data () {
return {}
},
computed: {
},
methods: {
}
}
</script>

View File

@@ -0,0 +1,17 @@
<template>
<d2-container type="full">
<template slot="header">这个页面不会被 keep-alive</template>
<p class="d2-mt-0">在下面的输入框输入任意字符后切换到其它页面再回到此页时输入框文字消失证明没有被缓存</p>
<el-input v-model="value" placeholder="input here"></el-input>
</d2-container>
</template>
<script>
export default {
data () {
return {
value: ''
}
}
}
</script>

View File

@@ -0,0 +1,17 @@
<template>
<d2-container type="full">
<template slot="header">这个页面会被 keep-alive</template>
<p class="d2-mt-0">在下面的输入框输入任意字符后切换到其它页面再回到此页时输入框文字保留证明被缓存</p>
<el-input v-model="value" placeholder="input here"></el-input>
</d2-container>
</template>
<script>
export default {
data () {
return {
value: ''
}
}
}
</script>