1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 14:16:50 +01:00
elk/components/publish/PublishButton.vue
2022-11-29 14:57:32 +08:00

13 lines
273 B
Vue

<script setup lang="ts">
function openDialog() {
openPublishDialog()
}
</script>
<template>
<button btn-outline rounded-full font-bold py4 flex="~ gap2 center" @click="openDialog">
<div i-ri:quill-pen-line />
{{ $t('action.compose') }}
</button>
</template>