随笔分类 -  Vue3

摘要:import { onMounted, onUnmounted, reactive } from 'vue' const data=reactive({ oldScrollTop:0, }); const scrolling=()=>{ // 滚动条距文档顶部的距离 let scrollTop =w 阅读全文
posted @ 2023-10-17 18:23 RealityAndLife 阅读(972) 评论(0) 推荐(0)
摘要:官方文档:https://prazdevs.github.io/pinia-plugin-persistedstate/zh/ 安装插件 pinia-plugin-persistedstate pnpm add pinia-plugin-persistedstate -D 使用 main.js配置 阅读全文
posted @ 2023-08-05 10:28 RealityAndLife 阅读(143) 评论(0) 推荐(0)
摘要:import { createRouter, createWebHistory } from 'vue-router' // createRouter 创建路由实例 // 配置 history 模式 // 1. history模式:createWebHistory 地址栏不带 # // 2. has 阅读全文
posted @ 2023-08-05 09:35 RealityAndLife 阅读(65) 评论(0) 推荐(0)