elk/components/publish/PublishButton.vue

13 lines
273 B
Vue
Raw Normal View History

2022-11-24 14:32:20 +00:00
<script setup lang="ts">
function openDialog() {
openPublishDialog()
2022-11-24 14:32:20 +00:00
}
</script>
2022-11-24 08:04:53 +00:00
<template>
2022-11-24 14:32:20 +00:00
<button btn-outline rounded-full font-bold py4 flex="~ gap2 center" @click="openDialog">
2022-11-24 08:04:53 +00:00
<div i-ri:quill-pen-line />
2022-11-29 06:57:32 +00:00
{{ $t('action.compose') }}
2022-11-24 08:04:53 +00:00
</button>
</template>