You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
499 B
16 lines
499 B
<template>
|
|
<div class="mt-8 bg-white overflow-hidden shadow sm:rounded-lg p-6">
|
|
<Tutorial />
|
|
<div class="">
|
|
<NuxtLink
|
|
class="rounded-md bg-indigo-600 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
|
to="highchart">Highchart test</NuxtLink>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'IndexPage',
|
|
}
|
|
</script>
|
|
|