Files
mes-ui-d2/src/pages/demo/playground/page-cache/off.vue
liyang a43757c436 优化显示
Former-commit-id: 0479434a2727c27ae9c1c8665d9b3367bf634654 [formerly 0479434a2727c27ae9c1c8665d9b3367bf634654 [formerly 0479434a2727c27ae9c1c8665d9b3367bf634654 [formerly 0479434a2727c27ae9c1c8665d9b3367bf634654 [formerly 02c67f1d1ea55b60aa2a0aafe939d452ea79ff95 [formerly a7295989f0953b7dfd0e0894173c143a23052e13]]]]]
Former-commit-id: ff6ea6aedb7e2bcaf68c329d744894b6e9a4abd9
Former-commit-id: 94a5e66f6c61b82e994e26a72243e071d8ab4956
Former-commit-id: ae5c7e090e8bf3e05d26ef52019d765265306624 [formerly 3715c68ef8dba70eb2bf7253bc430b0cb6684004]
Former-commit-id: 4c1866bae2969c7c449a24466ffedc2592da78ad
Former-commit-id: 78b763363a225a91cb96f1b6455870801002305c
Former-commit-id: c14a1de9a036c0336d90017038e9eae6963fc51c
Former-commit-id: cbb418396e45a3bdf58c857605f459ef632dde40
Former-commit-id: 02f105e79498b527d1542849c6e025bb51a0ff9c
2018-07-18 11:36:13 +08:00

18 lines
459 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<d2-container type="card">
<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>