startit/prosjekt/modell.js

22 lines
354 B
JavaScript
Raw Normal View History

2024-10-31 09:07:48 +01:00
var model = {
app: {
pages: ['home','new'],
currentPage: "home",
},
input:{
search: '',
},
data: {
books: [],
book:{
id: 0,
title: '',
authorFirstName: '',
authorLastName: '',
file: '',
coverImg: '',
},
}
}