All Projects → TerryZ → V Selectmenu

TerryZ / V Selectmenu

Licence: mit
SelectMenu for Vuejs, A simple, easier and highly customized menu solution

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to V Selectmenu

React Menu
React component for building accessible menu, dropdown, submenu, context menu and more.
Stars: ✭ 237 (+40.24%)
Mutual labels:  menu, contextmenu
Context Menu.ios
You can easily add awesome animated context menu to your app.
Stars: ✭ 1,854 (+997.04%)
Mutual labels:  menu, contextmenu
Vue Menu
Menu/Contextmenu Component for vue2
Stars: ✭ 227 (+34.32%)
Mutual labels:  menu, contextmenu
JonContextMenu
A beautiful and minimalist arc menu like the Pinterest one, written in Swift
Stars: ✭ 60 (-64.5%)
Mutual labels:  menu, contextmenu
vue3-context-menu
A very simple context menu component for Vue3 一个简洁美观简单的Vue3右键菜单组件
Stars: ✭ 74 (-56.21%)
Mutual labels:  menu, contextmenu
Electron Create Menu
a default menu for your electron applications, with convenience functions for multiplatform use and i18n.
Stars: ✭ 35 (-79.29%)
Mutual labels:  i18n, menu
ContextMenuSwift
A better version of iOS 13 Context Menu
Stars: ✭ 162 (-4.14%)
Mutual labels:  menu, contextmenu
Ngcontextmenu
Handcraft your very own context menus for a richer UX!
Stars: ✭ 81 (-52.07%)
Mutual labels:  menu, contextmenu
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (-10.06%)
Mutual labels:  i18n
Layerjs
layerJS: Javascript UI composition framework
Stars: ✭ 1,825 (+979.88%)
Mutual labels:  menu
Chinese Lunar Calendar For Mac
Chinese Lunar Calendar for Mac
Stars: ✭ 150 (-11.24%)
Mutual labels:  menu
I18n Extract
Manage localization with static analysis. 🔍
Stars: ✭ 152 (-10.06%)
Mutual labels:  i18n
Strsync
A CLI tool for localization resource management on Xcode. Built with Google Translator.
Stars: ✭ 157 (-7.1%)
Mutual labels:  i18n
Dial
A Rotary Dial menu for input numbers
Stars: ✭ 162 (-4.14%)
Mutual labels:  menu
Jquery.ime
jQuery based input methods library
Stars: ✭ 145 (-14.2%)
Mutual labels:  i18n
Hugo Theme Fuji
A minimal Hugo theme with nice theme color. | 一个主题色极简 Hugo 主题。
Stars: ✭ 145 (-14.2%)
Mutual labels:  i18n
Ax5ui Kernel
Javascript UI Framework - AX5UI - Kernel Module
Stars: ✭ 164 (-2.96%)
Mutual labels:  menu
Arduino Menusystem
Arduino library for implementing a menu system
Stars: ✭ 161 (-4.73%)
Mutual labels:  menu
React Site Nav
A kick ass site menu powered by styled components inspired by Stripe.
Stars: ✭ 155 (-8.28%)
Mutual labels:  menu
V Tooltip
💬 Easy tooltips, popovers, dropdown for Vue
Stars: ✭ 2,109 (+1147.93%)
Mutual labels:  menu

v-selectmenu circle ci code coverage npm version npm download JavaScript Style Guide

SelectMenu for Vuejs, A simple, easier and highly customized menu solution

Examples and Documentation

Live Examples on CodePen, more examples and documentation please visit below

The jQuery version: SelectMenu

Features

  • i18n support, provide Chinese, English, Japanese languages
  • regular menu multiple level support
  • multiple group type support
  • advanced menu mode with quick search
  • keyboard to quick navigate in advanced menu mode
  • custom row content render
  • embedded to page
  • mouse right click(contextmenu) or mouse move to call menu

Plugin preview

regular menu

regular

regular menu with group type

regular-group

advanced menu with group type

advanced

Installation

npm i v-selectmenu --save

Include plugin in your main.js file.

import Vue from 'vue'
import vSelectMenu from 'v-selectmenu';
Vue.use(vSelectMenu, { global config options... });

Usage (advanced menu mode by default)

<template>
  <v-selectmenu :data="list" v-model="value">
  </v-selectmenu>
</template>

<script>
  export default {
    data(){
      return {
        value: '',
        list: [
          { id: 1, name: 'Chicago Bulls', desc: '芝加哥公牛' },
          { id: 2, name: 'Cleveland Cavaliers', desc: '克里夫兰骑士' },
          { ... }
        ]
      }
    }
  }
</script>

License

license

Dependenics

Vue plugin series

Plugin Status Description
v-page npm version A simple pagination bar, including length Menu, i18n support
v-dialogs npm version A simple and powerful dialog, including Modal, Alert, Mask and Toast modes
v-tablegrid npm version A simpler to use and practical datatable
v-uploader npm version A Vue2 plugin to make files upload simple and easier,
you can drag files or select file in dialog to upload
v-ztree npm version A simple tree for Vue2, support single or multiple(check) select tree,
and support server side data
v-gallery npm version A Vue2 plugin make browsing images in gallery
v-region npm version A simple region selector, provide Chinese administrative division data
v-selectpage npm version A powerful selector for Vue2, list or table view of pagination,
use tags for multiple selection, i18n and server side resources supports
v-suggest npm version A Vue2 plugin for input suggestions by autocomplete
v-playback npm version A Vue2 plugin to make video play easier
v-selectmenu npm version A simple, easier and highly customized menu solution
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].