【备忘】让电脑流畅度跟网吧一样快且重启后就还原

前言

网吧的电脑有几个优秀的地方:

  1. 重启后立马恢复如初,上个使用电脑的人操作的资料全部不存在了,新来的人再使用这个太电脑跟新的一样

操作

  1. win+i打开系统设置,点击系统->存储->存储感知(自动释放空间)按钮打开->配置存储感知->勾选删除我的应用未在使用的临时文件,时间期限选择一天,WPS云盘更改为1天
  2. 接着立即清理空间(点击立即清理按钮)
  3. 接着按win+r,输入:msconfig,切换到引导标签,点击高级选项,处理器个数勾选,把个数修改未最大,,保存

备注:该设置会清除每次下载安装,或使用的记录,请慎重

END

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
这里提供一个简单的备忘录的Vue代码示例,你可以根据需要进行修改和完善。 ```html <template> <div class="memo"> <h2>备忘录</h2> <div class="input-container"> <input type="text" placeholder="添加新的备忘录" v-model="newMemo" @keyup.enter="addMemo"> <button @click="addMemo">添加</button> </div> <ul class="memo-list"> <li v-for="(memo, index) in memoList" :key="index"> <span class="memo-text">{{ memo }}</span> <button class="delete-btn" @click="deleteMemo(index)">删除</button> </li> </ul> </div> </template> <script> export default { data() { return { newMemo: '', memoList: [] } }, methods: { addMemo() { if (this.newMemo.trim() !== '') { this.memoList.push(this.newMemo.trim()) this.newMemo = '' } }, deleteMemo(index) { this.memoList.splice(index, 1) } } } </script> <style scoped> .memo { max-width: 600px; margin: 0 auto; padding: 20px; font-family: Arial, sans-serif; text-align: center; } .memo h2 { font-size: 24px; font-weight: bold; margin-bottom: 20px; } .input-container { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .input-container input[type=text] { width: 70%; padding: 10px; border: none; border-radius: 4px; font-size: 16px; margin-right: 10px; } .input-container button { background-color: #4CAF50; color: white; border: none; border-radius: 4px; cursor: pointer; padding: 10px; font-size: 16px; } .memo-list { list-style: none; padding: 0; margin: 0; } .memo-list li { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #ddd; } .memo-list li:last-child { border-bottom: none; } .memo-list li .memo-text { flex: 1; text-align: left; } .memo-list li .delete-btn { background-color: #f44336; color: white; border: none; border-radius: 4px; cursor: pointer; padding: 10px; font-size: 16px; } </style> ``` 这个备忘录的界面和苹果手机的备忘录类似,你可以在苹果手机上参考备忘录的布局和样式设计。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

SDL大华

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值