You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
568 B
22 lines
568 B
<template> |
|
<basic-container> |
|
<h3>这个页面会被 keep-alive</h3> |
|
<el-tag>在下面的输入框输入任意字符后,切换到其它页面,再回到此页时输入框文字保留,证明被缓存</el-tag> |
|
<br /> <br /> |
|
<el-tag>同时滚动下拉,返回时还会保持滚动条所在的位置</el-tag> |
|
<br /> <br /> |
|
<el-input v-model="value" placeholder="input here" /> |
|
|
|
<div style="height:1000px;"></div> |
|
</basic-container> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
value: "" |
|
}; |
|
} |
|
}; |
|
</script>
|
|
|