Can the to of the props property of the Button component in iView jump to another page?

can the to of the props property of the Button component in iView jump to another page? How to operate this, according to the documentation to try, found that no (String or Object) is the wrong way to write or? Thank you-sharp-sharp-sharp problem description

the environmental background of the problems and what methods you have tried

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

Jul.27,2021

Hello, landlord! According to the official document of iview , if you just jump to the internal page of the single page application, such as home , then
1, string: it can be written as to= "home" , it will jump to http://localhost:3000/-sharp/home
2, the object: in fact, it is obj
in this.$router.push (obj) .

the code is as follows:

Normal</i-button>
 </div>
</template>

<script>
    export default {
        data() {
            return {
                // 
                // to: 'home'
                // 
                to: {
                    path: 'home'
                }
            }
        }
    }
</script>
Menu