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