Activity: fix vuejs warning

This commit is contained in:
nobohan 2022-01-11 17:16:43 +01:00
parent fa0b9271c2
commit 1a7ec9e396
2 changed files with 6 additions and 2 deletions

View File

@ -12,7 +12,11 @@ const hasLocation = document.querySelector('#location') !== null;
const hasPerson = document.querySelector('#add-persons') !== null;
const app = createApp({
template: `<app :hasSocialIssues="hasSocialIssues", :hasLocation="hasLocation", :hasPerson="hasPerson"></app>`,
template: `<app
:hasSocialIssues="hasSocialIssues"
:hasLocation="hasLocation"
:hasPerson="hasPerson"
></app>`,
data() {
return {
hasSocialIssues,