Basic user management
This commit is contained in:
10
app/Views/Components/ErrorText.vue
Normal file
10
app/Views/Components/ErrorText.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<script setup>
|
||||
const props = defineProps({
|
||||
message: String,
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<small class="error_text" v-if="props.message">{{ props.message }}</small>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user