You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
350 B
12 lines
350 B
<!-- 项目版本管理 -->
|
|
<template>
|
|
<view class="px-5 py-3">
|
|
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 500rpx" @click="openSourceManage">项目版本管理</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
function openSourceManage() {
|
|
uni.navigateTo({ url: '/pages/projectVersion/projectVersion' });
|
|
}
|
|
</script>
|
|
|