[Improvement] follow eslint-plugin-vue strongly-recommended code style (#482)

This commit is contained in:
neverland
2017-12-26 10:34:38 +08:00
committed by GitHub
parent 6362f7b74b
commit 508cdfc0c9
105 changed files with 409 additions and 462 deletions

View File

@@ -9,9 +9,9 @@
</demo-block>
<demo-block :title="$t('advancedUsage')">
<van-stepper v-model="stepper2" min="5" max="40" step="2" defaultValue="9" />
<van-stepper v-model="stepper2" min="5" max="40" step="2" default-value="9" />
</demo-block>
</demo-section>
</demo-section>
</template>
<script>
@@ -19,7 +19,7 @@ export default {
data() {
return {
stepper1: 1,
stepper2: null,
stepper2: null
};
}
};
@@ -31,4 +31,4 @@ export default {
margin-left: 15px;
}
}
</style>
</style>