1
0
Fork 0
dri/src/components/Error.vue

23 lines
310 B
Vue
Raw Normal View History

2018-09-26 22:27:42 +08:00
<template>
<div v-if="message">{{ message }}</div>
</template>
<script>
export default {
2018-09-27 13:41:08 +08:00
props: {
message: String,
},
2018-09-26 22:27:42 +08:00
};
</script>
<style scoped>
div {
text-align: center;
background: #fdd;
color: #800;
padding: 0.5rem 0.75rem;
margin: 1rem;
border-radius: 0.5rem;
}
</style>