Change to Vue 3
This commit is contained in:
@@ -3,14 +3,14 @@ const $ = sel => document.querySelector(sel)
|
|||||||
const GET = (url) => axios.get('/browse'+url)
|
const GET = (url) => axios.get('/browse'+url)
|
||||||
const POST = (cmd,data) => axios.post('/browse'+cmd,data)
|
const POST = (cmd,data) => axios.post('/browse'+cmd,data)
|
||||||
|
|
||||||
const books = new Vue ({
|
const books = Vue.createApp ({
|
||||||
|
|
||||||
el:'#app',
|
data() {
|
||||||
|
return {
|
||||||
data: {
|
|
||||||
list: [],
|
list: [],
|
||||||
book: undefined,
|
book: undefined,
|
||||||
order: { quantity:1, succeeded:'', failed:'' }
|
order: { quantity:1, succeeded:'', failed:'' }
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
@@ -42,7 +42,7 @@ const books = new Vue ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
})
|
}).mount("#app")
|
||||||
|
|
||||||
// initially fill list of books
|
// initially fill list of books
|
||||||
books.fetch()
|
books.fetch()
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
<body class="small-container", style="margin-top: 70px;">
|
<body class="small-container", style="margin-top: 70px;">
|
||||||
<div id='app'>
|
<div id='app'>
|
||||||
|
|
||||||
<h1> {{ document.title }} </h1>
|
<h1> Capire Books </h1>
|
||||||
|
|
||||||
<input type="text" placeholder="Search..." @input="search">
|
<input type="text" placeholder="Search..." @input="search">
|
||||||
|
|
||||||
|
|||||||
@@ -4,21 +4,21 @@ const GET = (url) => axios.get('/reviews'+url)
|
|||||||
const PUT = (cmd,data) => axios.patch('/reviews'+cmd,data)
|
const PUT = (cmd,data) => axios.patch('/reviews'+cmd,data)
|
||||||
const POST = (cmd,data) => axios.post('/reviews'+cmd,data)
|
const POST = (cmd,data) => axios.post('/reviews'+cmd,data)
|
||||||
|
|
||||||
const reviews = new Vue ({
|
const reviews = Vue.createApp ({
|
||||||
|
|
||||||
el:'#app',
|
data() {
|
||||||
|
return {
|
||||||
data: {
|
list: [],
|
||||||
list: [],
|
review: undefined,
|
||||||
review: undefined,
|
message: {},
|
||||||
message: {},
|
Ratings: Object.entries({
|
||||||
Ratings: Object.entries({
|
|
||||||
5 : '★★★★★',
|
5 : '★★★★★',
|
||||||
4 : '★★★★',
|
4 : '★★★★',
|
||||||
3 : '★★★',
|
3 : '★★★',
|
||||||
2 : '★★',
|
2 : '★★',
|
||||||
1 : '★',
|
1 : '★',
|
||||||
}).reverse()
|
}).reverse()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
@@ -66,7 +66,7 @@ const reviews = new Vue ({
|
|||||||
datetime: (d) => d && new Date(d).toLocaleString(),
|
datetime: (d) => d && new Date(d).toLocaleString(),
|
||||||
},
|
},
|
||||||
|
|
||||||
})
|
}).mount("#app")
|
||||||
|
|
||||||
// initially fill list of my reviews
|
// initially fill list of my reviews
|
||||||
reviews.fetch()
|
reviews.fetch()
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
<body class="small-container", style="margin-top: 70px;">
|
<body class="small-container", style="margin-top: 70px;">
|
||||||
<div id='app'>
|
<div id='app'>
|
||||||
|
|
||||||
<h1> {{ document.title }} </h1>
|
<h1> Capire Reviews </h1>
|
||||||
|
|
||||||
<input type="text" placeholder="Search..." @input="search">
|
<input type="text" placeholder="Search..." @input="search">
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user