File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import SButton from './SButton.vue'
55defineProps <{
66 as? : string
77 icon? : any
8+ href? : string
89}>()
910
1011defineEmits <{
@@ -22,6 +23,7 @@ const size = useControlSize()
2223 mode =" mute"
2324 :size =" size"
2425 :icon =" icon"
26+ :href =" href"
2527 block
2628 @click =" $emit('click')"
2729 />
Original file line number Diff line number Diff line change 11<script setup lang="ts">
2+ import IconLink from ' @iconify-icons/ph/arrow-square-out-bold'
3+ import IconPlus from ' @iconify-icons/ph/plus-bold'
24import SCard from ' sefirot/components/SCard.vue'
35import SCardBlock from ' sefirot/components/SCardBlock.vue'
46import SControl from ' sefirot/components/SControl.vue'
57import SControlActionBar from ' sefirot/components/SControlActionBar.vue'
8+ import SControlActionBarButton from ' sefirot/components/SControlActionBarButton.vue'
69import SControlActionBarCollapse from ' sefirot/components/SControlActionBarCollapse.vue'
710import SControlButton from ' sefirot/components/SControlButton.vue'
811import SControlLeft from ' sefirot/components/SControlLeft.vue'
@@ -49,6 +52,8 @@ function state() {
4952 </SControlLeft >
5053 <SControlRight >
5154 <SControlActionBar >
55+ <SControlActionBarButton :icon =" IconPlus" />
56+ <SControlActionBarButton :icon =" IconLink" href =" https://sefirot.globalbrains.com/" />
5257 <SControlActionBarCollapse />
5358 </SControlActionBar >
5459 </SControlRight >
You can’t perform that action at this time.
0 commit comments