Socket
Socket
Sign inDemoInstall

vuetify-icon-picker

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuetify-icon-picker

An vuetify component used to pick icons.


Version published
Weekly downloads
38
increased by90%
Maintainers
1
Weekly downloads
 
Created
Source

Vuetify Icon Picker

This is an vuetify component used to pick material design icons.

Preface

Are you once troubled by no icon-picker component when using framework vuetify?

If yes here is one possible solution!

Getting Started

Installing

npm i vuetify-icon-picker

Using

In an common 2.x vuetify project (and mdi has been imported by way html cdn-link or npm i @mdi/font), you can use this component as following:

<template>
  <icon-picker v-model="selected" />
</template>

<script>
import IconPicker from "./components/IconPicker.vue";

export default {
  components: {
    IconPicker
  },
  data: () => ({
    selected: ""
  })
};
</script>

You can find more detailed example in this REPO

Component API

Props

NameTypeDefaultDescription
contentHeightnumber300used to specify one certain height of the container of icons
valuestringundefinedthe chosen icon, looks like mdi-home-outline

Events

NameDescription
inputtogether with prop value, to cater to v-model directive

Keywords

FAQs

Package last updated on 09 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc