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

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3c0b8-2c2d5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3c0b8-2c2d5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?