refactor: add eslint-plugin-vue && lint code (#976)

This commit is contained in:
花裤衩
2018-08-19 16:55:24 +08:00
committed by GitHub
parent 8f58baf617
commit e5d4290938
124 changed files with 1329 additions and 1084 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class='chart-container'>
<chart height='100%' width='100%'></chart>
<div class="chart-container">
<chart height="100%" width="100%"/>
</div>
</template>
@@ -8,7 +8,7 @@
import Chart from '@/components/Charts/keyboard'
export default {
name: 'keyboardChart',
name: 'KeyboardChart',
components: { Chart }
}
</script>

View File

@@ -1,6 +1,6 @@
<template>
<div class='chart-container'>
<chart height='100%' width='100%'></chart>
<div class="chart-container">
<chart height="100%" width="100%"/>
</div>
</template>
@@ -8,7 +8,7 @@
import Chart from '@/components/Charts/lineMarker'
export default {
name: 'lineChart',
name: 'LineChart',
components: { Chart }
}
</script>

View File

@@ -1,6 +1,6 @@
<template>
<div class='chart-container'>
<chart height='100%' width='100%'></chart>
<div class="chart-container">
<chart height="100%" width="100%"/>
</div>
</template>
@@ -8,7 +8,7 @@
import Chart from '@/components/Charts/mixChart'
export default {
name: 'mixChart',
name: 'MixChart',
components: { Chart }
}
</script>