mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 02:45:49 +02:00
feat: support wildcard certificate #190
This commit is contained in:
parent
4984771c7d
commit
a7e523b47b
17 changed files with 823 additions and 560 deletions
|
@ -8,6 +8,7 @@ const props = defineProps<{
|
|||
content?: string
|
||||
defaultHeight?: string
|
||||
readonly?: boolean
|
||||
placeholder?: string
|
||||
}>()
|
||||
|
||||
const emit = defineEmits(['update:content'])
|
||||
|
@ -32,9 +33,13 @@ const value = computed({
|
|||
borderRadius: '5px',
|
||||
}"
|
||||
:readonly="readonly"
|
||||
:placeholder="placeholder"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
:deep(.ace_placeholder) {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue