16 lines
222 B
Vue
16 lines
222 B
Vue
<script setup lang="ts">
|
|
// "decorator" simulation
|
|
import AppLayout from '../layouts/AppLayout.vue'
|
|
defineOptions({
|
|
layout: AppLayout
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>Hello</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|