14 lines
191 B
Vue
14 lines
191 B
Vue
<script setup lang="ts">
|
|
|
|
import ProtectedData from 'components/ProtectedData.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<h1>Hallloooooooooo</h1>
|
|
<ProtectedData />
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|