fix: toast가 가려지는 부분이 있는 문제 수정

This commit is contained in:
2021-12-26 03:31:32 +09:00
parent b7415ba521
commit d96099b9d3
+6 -1
View File
@@ -1,5 +1,5 @@
<template>
<CToaster placement="top-end">
<CToaster class="z99" placement="top-end">
<CToast
v-for="(toast, index) in modelValue"
:key="index"
@@ -44,3 +44,8 @@ export default defineComponent({
},
});
</script>
<style scoped>
.z99 {
z-index: 199;
}
</style>