All Projects → wemake-services → vue-material-input

wemake-services / vue-material-input

Licence: MIT License
Simple implementation of Material Input with no dependencies

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vue-material-input

Material Showcase Ios
✨ An elegant way to guide your beloved users in iOS apps - Material Showcase.
Stars: ✭ 300 (+1263.64%)
Mutual labels:  material, showcase
Viewtooltip
A fluent tooltip for Android
Stars: ✭ 1,029 (+4577.27%)
Mutual labels:  material, showcase
Tutoshowcase
A simple and Elegant Showcase view for Android
Stars: ✭ 499 (+2168.18%)
Mutual labels:  material, showcase
Vue Material
Material design for Vue.js
Stars: ✭ 9,528 (+43209.09%)
Mutual labels:  material, vue-material
Vuetify
🐉 Material Component Framework for Vue
Stars: ✭ 33,085 (+150286.36%)
Mutual labels:  material, vue-material
Kickmaterial
Crowdfunding app concept for Android. Created to showcase new trends in Android development with strong focus on Material Design.
Stars: ✭ 1,649 (+7395.45%)
Mutual labels:  material, showcase
vuetify-component-lib-template
Template for creating a component library/design system using Vue.js and Vuetify.js.
Stars: ✭ 35 (+59.09%)
Mutual labels:  material
MaterialComponents
The purpose of this repository is to demonstrate newly added components in material design components and how to use them in your project. https://android.jlelse.eu/how-i-customised-bottom-app-bar-behaviour-943f2416cd7a
Stars: ✭ 37 (+68.18%)
Mutual labels:  material
AndroidEssentialLibraries
👻 Android Essential Libraries - A couple of the Android Libraries to use in your Projects 🛠
Stars: ✭ 203 (+822.73%)
Mutual labels:  material
awesome-gridsome
A curated list of awesome things related to Gridsome
Stars: ✭ 66 (+200%)
Mutual labels:  showcase
SwingMaterialDesign
A Material Design components for java swing. Trying to make java swing more beautiful and vivid. with shadows and ripples.
Stars: ✭ 21 (-4.55%)
Mutual labels:  material
madewithwagtail
A showcase of sites and apps made with Wagtail CMS, the easy to use, open source Django content management system
Stars: ✭ 69 (+213.64%)
Mutual labels:  showcase
web
Cloverleaf is a free, open source app to replace your password manager without storing your passwords anywhere.
Stars: ✭ 33 (+50%)
Mutual labels:  material
aks-terraform-helm
Showcase for Azure, AKS, Terraform, Helm and Let's Encrypt
Stars: ✭ 23 (+4.55%)
Mutual labels:  showcase
10-bitClockWidget
10-bit Clock Widget uses 10 binary dots and their color to represent current time in 12-hour format.
Stars: ✭ 18 (-18.18%)
Mutual labels:  material
FireFiles
Powerful Android File Manager for everything that runs on Android OS (Android TV, Android Watch, Mobile, etc)
Stars: ✭ 37 (+68.18%)
Mutual labels:  material
base16-materialtheme-scheme
Material Themes for Base16
Stars: ✭ 70 (+218.18%)
Mutual labels:  material
WanAndroid
💪 WanAndroid应用,持续更新,不断打造成一款持续稳定, 功能完善的应用
Stars: ✭ 50 (+127.27%)
Mutual labels:  material
neutronics material maker
A tool for making parametric material cards for use in neutronics codes. Original developed for the Paramak
Stars: ✭ 17 (-22.73%)
Mutual labels:  material
react-mdl-extra
React MDL Extra components
Stars: ✭ 41 (+86.36%)
Mutual labels:  material

vue-material-input

Build Status Coverage Status

Simple implementation of Material Input with no dependencies.

Showcase

Showcase

Installation

npm install vue-material-input

Usage

Example with v-model:

import Vue from 'Vue'
import MaterialInput from 'vue-material-input'

const vm = new Vue({
  el: '#app', // note that `#app` must be presented in the html
  template: (
    '<form><p>Hello, {{ username }}</p>' +
      '<MaterialInput name="name" v-model="username">Your name</MaterialInput>' +
    '</form>'
  ),
  data () {
    return {
      username: 'admin'
    }
  },
  components: {
    MaterialInput
  }
})

For more examples, please check /play folder and the project's website.

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].