♻️ Lint

This commit is contained in:
Liyas Thomas
2020-01-20 23:01:31 +05:30
parent 87be0b3d3d
commit 67bcf91073
5 changed files with 22 additions and 25 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div>
<p v-for="ball in store.ballsInFeed" :key="ball.id">
<span> {{ ball.author_name }}:</span>
{{ ball.message }}
</p>
</div>
</template>
<script>
import { store } from "../../functions/store";
export default {
data() {
return {
store
};
}
};
</script>