And my choose date doesn't show properly here: https://imgur.com/iJfkpX7. It show with time. I don't want to show with time..
And if I comment this line
Choose date work perfectly without time, only date as in the script #datepicker. But it disables other functions for me (AddBtn.vue doesn't work properly after disable that line..) What is the problem?
My first guess would be that there's something in app.js that's breaking the execution of javascript. So when you don't comment it, the script doesn't really reach the script at the bottom.
Are there any errors in the console when you don't comment the app.js script?
@unk Like @tykus said, super hard to keep track of all your dependencies. I would look for a way to remove JQuery entirely, you're already using Vue, so there's not a lot of sense on using JQuery any more. That's my take anyways.
Also like tykus said, I think the main problem is your template doesn't have an #app element, which Vue needs to know where to work.