♻️ Lint
This commit is contained in:
20
components/firebase/feeds.vue
Normal file
20
components/firebase/feeds.vue
Normal 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>
|
||||
Reference in New Issue
Block a user