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