How does the page component of iview use slot?

problem description

in the page component in the iview document, there is a description:

Total
shows how many pieces of data total. Accept slot to customize the content. A total of {{total}} pieces of

"100"


:

clipboard.png

are displayed by default.

123 does not replace "a total of 100", but appears at the bottom?

what should I do if I want to replace the default text prompt with a total of {{total}}?

Thank you!

Jun.11,2022

Preview: https://run.iviewui.com/7F4asqj0

<template>
    <Page :total="total" show-total>
      <span>{{ total }}</span>
    </Page>
</template>
<script>
    export default {
        data(){
          return {
            total: 100
          }
        }
    }
</script>

clipboard.png

Menu