All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s
17 lines
436 B
Vue
17 lines
436 B
Vue
|
|
<!-- pages are the base instance for routes. an endpoint serves a page, and the page loads components -->
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<h1>straight up gargoyling it !</h1>
|
|
<h3>yeah im so cool rn</h3>
|
|
<h1>imagining what I could do with themes :o</h1>
|
|
|
|
<router-link to="/users" custom v-slot="{ navigate }">
|
|
<button @click="navigate" role="link">Users</button>
|
|
</router-link>
|
|
</template>
|