🎉 Initial Auth

This commit is contained in:
Liyas Thomas
2020-01-20 22:25:48 +05:30
parent 27585d5c93
commit 87be0b3d3d
7 changed files with 1150 additions and 17 deletions

20
components/BallsFeed.vue Normal file
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>