Compare commits
1 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
7d9f360491 |
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<h1>New Cookbook Component - develop</h1>
|
<h1>New Cookbook Component</h1>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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