
vue
拾文断字
什么都无法舍弃的人,什么都无法得到,走出舒适圈
展开
-
ref 重写组件方法
this.$refs[‘calendar’].btnFix = function(boll) { console.log(boll, “重写组件方法”); })原创 2022-02-23 18:11:34 · 255 阅读 · 0 评论 -
父组件中操作子组件 子组件操作父组件
$refs 让我们可以在父组件中进行操作子组件的数据以及方法。 $parents 让我们可以在子组件中对父组件的data和方法操作。原创 2020-12-16 15:49:32 · 310 阅读 · 1 评论 -
vue 虚拟列表简单实现
<template> <div class="list-view" @scroll="handleScroll"> <div class="list-view-phantom" :style="{height: contentHeight}"></div> <div ref="content" class="list-view-content"> <div class="list-view-item" :st原创 2020-11-24 15:12:09 · 689 阅读 · 0 评论