feat: support wildcard certificate #190

This commit is contained in:
0xJacky 2023-12-13 16:15:16 +08:00
parent 4984771c7d
commit a7e523b47b
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
17 changed files with 823 additions and 560 deletions

View file

@ -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>