
vue
娜娜啊吖
这个作者很懒,什么都没留下…
展开
-
Vue 列是否固定在左侧
表格组件原创 2023-02-13 18:31:41 · 488 阅读 · 0 评论 -
Vue 实现enter发送 、enter+shift换行
enter发送原创 2022-08-30 16:46:45 · 2618 阅读 · 0 评论 -
vue slot
test.vue 文件-home.vue 文件原创 2022-06-20 17:55:04 · 146 阅读 · 0 评论 -
Vue 封装 Switch开关组件
封装switch 主要内容包括基础应用、实用技巧、原理机制等方面直接上代码子组件 /child.vuehtml<template> <label role="checkbox" :class="['switch', { toggled }]"> <input type="checkbox" class="switch-input" @change="toggle" /> <div class="switch-core原创 2022-03-29 11:13:25 · 1672 阅读 · 0 评论 -
Vue中v-model如何和Vuex结合起来
我的input框v-model绑定的是Vuex里的state,但是没有做到双向绑定。今天就聊一下如何优雅的绑定Vuex第一种 <div> <input type="text" v-model="$store.state.Root.value" /> <p>{{ $store.state.Root.value }}</p> // 这里为什么是state.Root.value 是我这里用到了vuex里.原创 2022-03-25 16:04:15 · 2425 阅读 · 0 评论 -
vue 拖拽插件
vue.draggable中文文档转载 2022-03-16 11:24:35 · 560 阅读 · 0 评论 -
移动端 记录滚动位置
记录滚动位置需要: 点击首页列表进入二级页面,返回的时候保持在原位置。利用: document.documentElement.scrollTop ||window.scrollTop ||document.body.scrollTop;//首页mounted(){this.autoPosition()},methods:{ // 记录当距离顶部的位置 recodePosition() { let scrollTop =document.documentElement.sc原创 2021-07-30 16:20:21 · 509 阅读 · 0 评论