2023-12-19 18:43:42 +01:00
< script lang = "ts" setup >
import type { InputOption } from '~/types'
const options : InputOption [ ] = [
{ label : 'All' , value : 'all' } , { label : 'Zk-tech' , value : 'zk' } ,
]
const loremIpsum : string = 'Description just text Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tempus nulla quis enim vulputate semper. Duis varius nibh sed magna tincidunt pellentesque.'
2024-09-02 15:13:43 +02:00
// const cardData = {
// image: 'https://ctrlv.cz/Epud',
// title1: 'title1',
// title2: 'title2',
// percentage: 84,
// anonymity: true,
// decentralized: true,
// opensource: true,
// license: 'MIT',
// datatracking: true,
// compliance: true,
// }
2023-12-19 18:43:42 +01:00
const selectedOption = ref ( 'all' )
< / script >
< template >
2024-09-02 15:13:43 +02:00
< div
flex
flex - col
items - start
justify - start
gap - 8 px
>
< Category
title = "All Projects"
: count = "503"
/ >
< Category
title = "All Projects"
: count = "503"
selected
/ >
2023-12-19 18:43:42 +01:00
< Button mt -16px >
< template # prefix >
< UnoIcon i -heroicons -solid -pencil / >
< / template >
Edit Research
< / Button >
< Button >
Save Research
< / Button >
2024-09-02 15:13:43 +02:00
< MenuItem
title = "Dashboard"
mt - 16 px
/ >
< MenuItem
title = "Dashboard"
selected
/ >
2023-12-19 18:43:42 +01:00
< Badge text = "84%" / >
2024-09-02 15:13:43 +02:00
< Badge
text = "84%"
inverted
/ >
< SelectBox
v - model = "selectedOption"
mt - 16 px
: options = "options"
/ >
< h1
custom - link
mt - 16 px
>
2023-12-19 18:43:42 +01:00
Custom Link
< / h1 >
< Helper :info = "loremIpsum" / >
< NavigationButton @click ="$router.back()" >
Back
< / NavigationButton >
2024-09-02 15:13:43 +02:00
< Tabs
v - model = "selectedOption"
mt - 16 px
: options = "options"
/ >
2023-12-19 18:43:42 +01:00
<!-- < Card
v - if = "cardData"
id = "test"
: image = "cardData.image" : title1 = "cardData.title1" : title2 = "cardData.title2" : percentage = "cardData.percentage"
: opensource = "cardData.opensource" : license = "cardData.license"
/ > - - >
< / div >
< / template >