Fix linting errors

This commit is contained in:
Kay Thomas
2022-05-26 17:08:00 -07:00
parent 625ce328dd
commit 4ab595f3a1
14 changed files with 33 additions and 29 deletions

View File

@@ -1,15 +1,15 @@
<template>
<Noise />
<NoisePage />
</template>
<script>
import Noise from '../components/Noise'
import NoisePage from '../components/NoisePage'
export default {
name: 'HomeView',
components: {
Noise
NoisePage
}
}
</script>