tum-esm / slidev-template

our presentation template for slidev
2 stars 0 forks source link

Prop definitions not working after slidev update #9

Open debOliveira opened 10 months ago

debOliveira commented 10 months ago

After d2930474f90b9d87c917d9c7777fbb72ec9a2407, the props for the custom components Footer and Logo are not working anymore. It is not the best solution, but hardcoding the values temporarily solves the problem:

<template>
    <div class="w-full h-full bg-white relative">
        <div
            class="slidev-layout center w-full h-full flex flex-col items-center justify-center">
            <slot />
        </div>
        <Footer subtitle="Your subtitle here"/>
        <TUMLogo variant="blue" />
    </div>
</template>
dostuffthatmatters commented 9 months ago

Hi @debOliveira

thank you for reporting this! I will look into it.