Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
Update Textfield.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
matsp authored Oct 23, 2017
1 parent e222eef commit e9fa224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Textfield/Textfield.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="mdc-textfield" :class="classes">
<i v-if="leadingIcon" class="material-icons mdc-textfield__icon">{{leadingIcon}}</i>
<input :id="id" class="mdc-textfield__input" :value="value" @input="onInput" :placeholder="placeholder" v-bind="$attrs" />
<input class="mdc-textfield__input" :value="value" @input="onInput" :placeholder="placeholder" v-bind="$attrs" />
<label v-if="label" class="mdc-textfield__label" :class="classesLabel">{{label}}</label>
<i v-if="trailingIcon" class="material-icons mdc-textfield__icon">{{trailingIcon}}</i>
<div v-if="bottomLine" class="mdc-textfield__bottom-line"></div>
Expand Down

0 comments on commit e9fa224

Please sign in to comment.