21 lines
310 B
Vue
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>
|