This repository has been archived on 2021-10-25. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-10-07 18:29:01 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
|
|
|
defineProps<{ msg: string }>()
|
|
|
|
|
|
|
|
const count = ref(0)
|
2021-10-09 22:01:52 +02:00
|
|
|
let test = ref("yeet")
|
|
|
|
|
|
|
|
fetch("/api/users").then(
|
|
|
|
res => {
|
|
|
|
if (!res.ok) return Promise.reject()
|
|
|
|
|
|
|
|
return res.json()
|
|
|
|
}
|
|
|
|
).then(
|
|
|
|
json => test.value = json
|
|
|
|
)
|
2021-10-07 18:29:01 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<h1>{{ msg }}</h1>
|
|
|
|
|
2021-10-09 22:01:52 +02:00
|
|
|
<p>{{ test }}</p>
|
|
|
|
|
2021-10-07 18:29:01 +02:00
|
|
|
<p>
|
|
|
|
Recommended IDE setup:
|
|
|
|
<a href="https://code.visualstudio.com/" target="_blank">VSCode</a>
|
|
|
|
+
|
|
|
|
<a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>See <code>README.md</code> for more information.</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<a href="https://vitejs.dev/guide/features.html" target="_blank">
|
|
|
|
Vite Docs
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="https://v3.vuejs.org/" target="_blank">Vue 3 Docs</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<button type="button" @click="count++">count is: {{ count }}</button>
|
|
|
|
<p>
|
|
|
|
Edit
|
|
|
|
<code>components/HelloWorld.vue</code> to test hot module replacement.
|
|
|
|
</p>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
a {
|
|
|
|
color: #42b983;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
margin: 0 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
background-color: #eee;
|
|
|
|
padding: 2px 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #304455;
|
|
|
|
}
|
|
|
|
</style>
|