23 lines
291 B
Vue
23 lines
291 B
Vue
<template>
|
|
<main>
|
|
<h1>Ghibli movies</h1>
|
|
{{ films }}
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Movies",
|
|
data() {
|
|
return {
|
|
films: []
|
|
};
|
|
},
|
|
async mounted() {
|
|
this.films = await this.$axios.$get("/api/films");
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|