mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 21:42:20 +01:00
fix(songs): change new Vue to createApp
This commit is contained in:
@ -64,17 +64,18 @@
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
let manage_vue = new Vue({
|
||||
el: '#request-table',
|
||||
let manage_vue = createApp({
|
||||
delimiters: ['${', '}$'],
|
||||
data: {
|
||||
songs: [],
|
||||
total_songs: 0,
|
||||
search_input: "",
|
||||
typing_timer: null,
|
||||
page_size: 10,
|
||||
page_number: 1,
|
||||
user_data: null,
|
||||
data() {
|
||||
return {
|
||||
songs: [],
|
||||
total_songs: 0,
|
||||
search_input: "",
|
||||
typing_timer: null,
|
||||
page_size: 10,
|
||||
page_number: 1,
|
||||
user_data: null,
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
search_input: {
|
||||
|
||||
Reference in New Issue
Block a user