You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
568 B
Vue
28 lines
568 B
Vue
<script setup lang="ts">
|
|
import { ref } from "vue"; //引入相关api/引入下载的动效json
|
|
|
|
defineOptions({
|
|
name: "ComputePowerAllocation"
|
|
});
|
|
|
|
const animation1 = ref(null); //获取dom;
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main_booy_container computePowerAllocation_wrap">
|
|
<ul>
|
|
<li>
|
|
<el-card class="line-card" :body-style="{ padding: 0 }">
|
|
算力配置
|
|
</el-card>
|
|
</li>
|
|
</ul>
|
|
<img src="" alt="" />
|
|
{{ animation1 }}
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import "./computePowerAllocation.scss";
|
|
</style>
|