14 lines
179 B
Vue
14 lines
179 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h1 style="margin-left: 200px">About</h1>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
</script>
|
||
|
|
||
|
<style >
|
||
|
h1 {
|
||
|
view-transition-name: header;
|
||
|
}
|
||
|
</style>
|