- prettier formatting
All checks were successful
CI Pipeline / japa-tests (push) Successful in 51s

- npm updates
- new SearchMap.vue component
This commit is contained in:
Kaimbacher 2023-10-31 15:38:43 +01:00
parent 7bc9f90cca
commit a7142f694f
74 changed files with 3360 additions and 3577 deletions

View file

@ -1,19 +1,19 @@
<template>
<div>
<Link href="/app/login">Login</Link>
<h1 class="text-red-500">Welcome, {{ testing }}</h1>
<!-- <n-button>Testing</n-button>
<div>
<Link href="/app/login">Login</Link>
<h1 class="text-red-500">Welcome, {{ testing }}</h1>
<!-- <n-button>Testing</n-button>
<n-input v-bind:value="testing"></n-input> -->
<div class="features">
<ul>
<li v-for="user in users">
<span>{{ user.login }}</span>
<span>{{ user.email }}</span>
</li>
</ul>
</div>
</div>
<div class="features">
<ul>
<li v-for="user in users">
<span>{{ user.login }}</span>
<span>{{ user.email }}</span>
</li>
</ul>
</div>
</div>
</template>
<!-- <script>
@ -52,36 +52,36 @@ export default {
}
</script> -->
<script lang ="ts">
<script lang="ts">
import { Component, Vue, Prop } from 'vue-facing-decorator';
import type User from "App/Models/User";
import type User from 'App/Models/User';
import { Link } from '@inertiajs/vue3';
import DefaultLayout from '@/Layouts/Default.vue';
// import { NInput, NButton } from 'naive-ui';
@Component({
options: {
layout: DefaultLayout,
},
name: 'AppComponent',
components: {
Link,
// NInput,
// NButton,
},
options: {
layout: DefaultLayout,
},
name: 'AppComponent',
components: {
Link,
// NInput,
// NButton,
},
})
export default class AppComponent extends Vue {
// Component Property
@Prop({
type: String,
default: () => (""),
})
testing: string;
// Component Property
@Prop({
type: String,
default: () => '',
})
testing: string;
@Prop({
type: Array,
default: () => ([]),
})
users: Array<User>;
@Prop({
type: Array,
default: () => [],
})
users: Array<User>;
}
</script>