remove item import

This commit is contained in:
Timo Hocker 2020-01-22 07:35:34 +01:00
parent a8223d110b
commit de3ec4572d

View File

@ -27,8 +27,6 @@
</template> </template>
<script> <script>
import {Item} from "./Item";
export default { export default {
name: "App", name: "App",
data() { data() {
@ -41,8 +39,7 @@ export default {
fetch("?json") fetch("?json")
.then(res => res.json()) .then(res => res.json())
.then(json => (self.json = json)); .then(json => (self.json = json));
}, }
components: [Item]
}; };
</script> </script>