Files
hoppscotch/components/firebase/feeds.vue
Liyas Thomas 67bcf91073 ♻️ Lint
2020-01-23 16:42:31 +05:30

21 lines
310 B
Vue

<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>