Added vue handling the information from lubimy czytac to fetch information about the books and fill in the form automatically.
This commit is contained in:
24
assets/js/pages/files.vue
Normal file
24
assets/js/pages/files.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
<h1>hello {{ world }}</h1>
|
||||
<MessageComponent></MessageComponent>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MessageComponent from "../components/message";
|
||||
import axios from 'axios';
|
||||
|
||||
export default {
|
||||
name: 'Files',
|
||||
components: {MessageComponent},
|
||||
data() {
|
||||
return {
|
||||
world: "świecie 2"
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user