26 lines
374 B
Vue
26 lines
374 B
Vue
<!--
|
|
filename: index.vue
|
|
author: liubin
|
|
date: 2024-04-16 14:40:15
|
|
description: 能源驾驶舱
|
|
-->
|
|
|
|
<template>
|
|
<div class="energy-copilot">能源驾驶舱</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "EnergyCopilot",
|
|
components: {},
|
|
props: {},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|