perf: 发布 0.2.3 版本

This commit is contained in:
就眠仪式
2021-11-08 00:54:38 +08:00
parent 45bfa46a4a
commit b2e6afd7b3
8 changed files with 61 additions and 37 deletions

View File

@@ -19,20 +19,20 @@
</ul>
</template>
<script setup lang="ts">
import { computed, defineProps, Ref, ref, watch, withDefaults } from 'vue'
import { computed, defineProps, withDefaults } from 'vue'
const props = withDefaults(
defineProps<{
length?: number
modelValue: number
character?: string
readonly?: boolean
readonly?: boolean | string
theme?: string
}>(),
{
length: 5,
modelValue: 0,
readonly: false,
theme: 'green',
}
)