10 lines
213 B
Vue
10 lines
213 B
Vue
|
|
<template>
|
||
|
|
<ReportCard :report="{title: 'WebSources', content: 'Destination URL'}"/>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import ReportCard from './ReportCard.vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less" scoped>
|
||
|
|
</style>
|