8 lines
211 B
Vue
8 lines
211 B
Vue
<template>
|
|
<CoopBuilderPage />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Reuse the existing coop builder content by importing it as a component
|
|
import CoopBuilderPage from "~/pages/coop-builder.vue";
|
|
</script>
|