mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-13 03:50:07 +08:00
23 lines
353 B
Vue
23 lines
353 B
Vue
<template>
|
|
<div class="msg">
|
|
<span>{{ props.title }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineOptions({ name: 'ErrPrompt' });
|
|
const props = defineProps({
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.msg {
|
|
color: #ff0000;
|
|
line-height: 30px;
|
|
}
|
|
</style>
|