soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
294 Bytes
<script>
export default {
props: {
username: {
type: String,
default: 'ms',
},
id: {
type: Number,
default: 33,
},
},
}
</script>
<template>
<div>
<p>Hello from route with props: Username: {{ username }}, Id: {{ id }}</p>
</div>
</template>