话不多说上代码

Html

<template>
    <div style="padding:10px 20px 0 20px;">
        <el-button class="wp-but" @click="Popup">catia</el-button>
    </div>
</template>

Js

<script>
    export default {
        data() {
            return {
                visible:false,
                id:'',
            }
        },
        methods: {
            Popup() {                                               
               window.open(
                        "http://localhost:9527/#/integration/catia",//需要跳转的路由
                        '_blank',//是否在新的页面打开
                        'width=1500,height=800,toolbar=no,//设置弹出窗口的各项属性
                         scrollbars=no,menubar=no,screenX=240,screenY=100'
                         )
            }
        },
    }
</script>

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐