25 lines
484 B
Vue
25 lines
484 B
Vue
<template>
|
|
<el-button plain @click="open" type="info">修改</el-button>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const props = defineProps(["data"]);
|
|
const open = () => {
|
|
// ElMessageBox.alert(props.data.cpu, props.data.name, {
|
|
navigateTo(
|
|
{
|
|
path: "/admin/applications/change",
|
|
query: props.data,
|
|
},
|
|
{
|
|
open: {
|
|
target: "_blank",
|
|
windowFeatures: {
|
|
width: 648,
|
|
height: 648,
|
|
},
|
|
},
|
|
}
|
|
);
|
|
};
|
|
</script>
|