1. vueuc
Util Components for Vue
vueuc
Package: vueuc
Last modified: Wed, 27 Dec 2023 13:05:37 GMT
Version: 0.4.58
License: MIT
Downloads: 98,606

Install

npm install vueuc
yarn add vueuc

Vueuc

codecov
Total alerts
License

Util Components for Vue.

Preview

https://vueuc.vercel.app

Components

VBinder

Includes v-binder, v-follower and v-target.

Content in v-follower will track v-target. Use v-binder to wrap 1 v-target and 1 or more v-target.

For more API please read the source code. I'm too lazy to write them since I'm the only one that uses the library.

 <v-binder>
  <v-target>
    <target-element />
  </v-target>
  <v-follower show placement="top">
    <follwer-element-1 />
  <v-follower>
  <v-follower show placement="bottom">
    <follwer-element-1 />
  <v-follower>
</v-binder>

VVirtialList

A simple virtual list which supports flexable-height items

VXScroll

All content inside it to be scroll in X direction when you wheel at Y direction.

VResizeObserver

 <v-resize-observer :on-resize="handleResize">
  <el />
</v-resize-observer>

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin