17 lines
204 B
Vue
17 lines
204 B
Vue
<template lang="html">
|
|
<v-card
|
|
hover
|
|
@click="$emit('click')"
|
|
>
|
|
Character sheet
|
|
</v-card>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
export default {
|
|
}
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|