Migrate to vue3 (fix #126) #127

Merged
Xefir merged 32 commits from vue3 into main 2024-08-17 12:24:28 +00:00
Showing only changes of commit e78e3b2565 - Show all commits

View File

@ -1,9 +1,9 @@
<template>
<div>
<div class="flex">
<NcAvatar :display-name="name" :is-no-user="true" :size="256" :url="image" />
<h2>{{ name }}</h2>
<SafeHtml :source="description" />
<div>
<div class="flex">
<NcButton v-if="link" :href="link" target="_blank">
<template #icon>
<OpenInNewIcon :size="20" />
@ -75,7 +75,7 @@ export default {
</script>
<style scoped>
div {
.flex {
align-items: center;
display: flex;
flex-direction: column;