Files
hoppscotch/components/BallsFeed.vue
Liyas Thomas 87be0b3d3d 🎉 Initial Auth
2020-01-23 16:41:23 +05:30

21 lines
306 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>