17 lines
236 B
Vue
17 lines
236 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'graph',
|
|
})
|
|
|
|
defineOgImageComponent('Default', {
|
|
title: 'Portfolio',
|
|
borderColor: 'green-300',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<GraphView/>
|
|
</div>
|
|
</template>
|