eaf925b387
* feat(fe-2): improved logging * yarn lock update * attempted speckle/shared build fix * helm updates * Updates documentation for helm chart --------- Co-authored-by: Iain Sproat <68657+iainsproat@users.noreply.github.com>
21 lines
594 B
Vue
21 lines
594 B
Vue
<template>
|
|
<div class="bg-foundation text-foreground p-12">
|
|
<NuxtLink to="http://example.com">Link to exmaple.com</NuxtLink>
|
|
<FormCheckbox name="Checkbox" value="test-checkbox" />
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
|
|
// Tests that show this functionality works in Storybook
|
|
const counter = useState('counter', () => 100)
|
|
const runtimeConfig = useRuntimeConfig()
|
|
const nuxt = useNuxtApp()
|
|
|
|
// onMounted(() => {
|
|
// logger.info(counter.value)
|
|
// logger.info(runtimeConfig)
|
|
// logger.info(nuxt)
|
|
// })
|
|
</script>
|