Skip to content

Commit

Permalink
refactor(entity): show types
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed Oct 15, 2021
1 parent 15d0f74 commit ad0097f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/editor/entity/EditorEntityShow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,15 @@
const { t } = useI18n()
const raw = useRaw()
const hover = ref(false)
const focus = ref(false)
const edit = ref(false)
const keyboard = ref(false)
const hover = ref<boolean>(false)
const focus = ref<boolean>(false)
const edit = ref<boolean>(false)
const keyboard = ref<boolean>(false)
const data = ref('')
const show = ref(null)
const data = ref<string>('')
const show = ref<HTMLDivElement | null>(null)
const input = ref<HTMLTextAreaElement | null>(null)
const height = ref('0px')
const height = ref<string>('0px')
const style = computed(() => store.state.editor.styles.show)
Expand Down

0 comments on commit ad0097f

Please sign in to comment.