Adding layouts
This commit is contained in:
parent
5dd6adda06
commit
7d9f360491
|
|
@ -0,0 +1,16 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h1>New Cookbook layout 2</h1>
|
||||||
|
<RoutePage />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import RoutePage from '@components/RoutePage.cb'
|
||||||
|
|
||||||
|
// Your script here
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
/* Your styles here */
|
||||||
|
</style>
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h1>New Cookbook layout 2</h1>
|
||||||
|
<RoutePage />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import RoutePage from '@components/RoutePage.cb'
|
||||||
|
// Your script here
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
/* Your styles here */
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue