parent
bda2cae783
commit
ac9c3070a5
@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<div>123</div>
|
||||
</template>
|
@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<div>这是新增的小程序表单</div>
|
||||
</template>
|
@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<div>
|
||||
<button @click="getinfo">编辑</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import { useRouter, useRoute } from "vue-router";
|
||||
const router = useRouter();
|
||||
const route = useRoute();
|
||||
const getinfo = () => {
|
||||
// 路由跳转
|
||||
router.push({ path: "/assetsManage2/a2-info" });
|
||||
};
|
||||
</script>
|
Loading…
Reference in new issue