Skip to content

Commit

Permalink
Fix scss.
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryRidgway committed Oct 31, 2023
1 parent f0dcf61 commit 036fc9a
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions src/components/stub/Stub.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import './Stub.scss';
import {computed} from 'vue';
import './stub.scss';
import {v3_URL} from '../utlity';
import UidsButton from '../button';
const name = 'uids-Stub'
const props = defineProps({
Expand All @@ -18,5 +18,19 @@ const props = defineProps({
</script>

<template>
<a :href="v3_URL + path">Click</a>
<div>
<iframe src="https://uids.brand.uiowa.edu/components/preview/accordion.html" title="accordion"></iframe>
<uids-button
:url="v3_URL + path"
color="primary"
size="medium"
:borderless="false"
:full="false"
:transparent="false"
:light_font="false"
>
<template #default >View in uids3</template>
<template #icon ><i class='fas fa-arrow-right'></i></template>
</uids-button>
</div>
</template>

0 comments on commit 036fc9a

Please sign in to comment.