You need to sign in or sign up before continuing.
提交 d27d3617 编写于 作者: View Design's avatar View Design

Update Create.vue

上级 c40f6896
<template> <template>
<div class="max-w-screen-md w-full flex flex-col space-y-4 p-6"> <div class="max-w-screen-md w-full flex flex-col space-y-4 p-6">
<UCard :ui="{ body: { padding: 'p-4 sm:p-4' } }"> <UCard
class="transition-[box-shadow] hover:ring-2 has-[:focus]:ring-2 has-[:focus]:ring-green-500 dark:has-[:focus]:ring-green-400"
:ui="cardUI"
>
<UTextarea <UTextarea
name="createInput" name="createInput"
v-model="query" v-model="query"
...@@ -39,7 +42,12 @@ const emits = defineEmits([ 'search' ]) ...@@ -39,7 +42,12 @@ const emits = defineEmits([ 'search' ])
const query = ref('') const query = ref('')
const selectedRepo = ref('keycloak') const selectedRepo = ref('keycloak')
const loading = ref(false) const loading = ref(false)
const cardUI = {
body: {
padding: 'p-4 sm:p-4'
},
rounded: 'rounded-xl'
}
const menuUI = { const menuUI = {
width: 'w-auto' width: 'w-auto'
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册