1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-20 01:28:01 +09:00
elk/components/publish/PublishButton.vue

13 lines
273 B
Vue
Raw Normal View History

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