playwright/tests-components/ct-vue-vite/src/components/DefaultSlot.vue

12 lines
153 B
Vue
Raw Normal View History

2022-03-12 00:46:11 +01:00
<template>
<div>
<h1>Welcome!</h1>
<main>
<slot />
</main>
<footer>
Thanks for visiting.
</footer>
</div>
</template>