。。。
This commit is contained in:
parent
38dfe04991
commit
7f2912d9ad
|
@ -1,4 +1,4 @@
|
||||||
@import "./variables";
|
@use "./variables" as *;
|
||||||
|
|
||||||
// 全局样式
|
// 全局样式
|
||||||
* {
|
* {
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<template>
|
|
||||||
<Icon name="LineMdMenuFoldRight" />
|
|
||||||
<Icon name="LineMdMenuFoldRight" />
|
|
||||||
</template>
|
|
||||||
<script setup lang="ts">
|
|
||||||
</script>
|
|
|
@ -1,13 +0,0 @@
|
||||||
<!-- Child.vue -->
|
|
||||||
<script setup>
|
|
||||||
const model = defineModel();
|
|
||||||
|
|
||||||
function update() {
|
|
||||||
model.value++;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>Parent bound v-model is: {{ model }}</div>
|
|
||||||
<button @click="update">Increment</button>
|
|
||||||
</template>
|
|
|
@ -1,5 +1,4 @@
|
||||||
<script setup lang="tsx">
|
<script setup lang="tsx">
|
||||||
import { ref, watch, defineProps, onMounted } from "vue";
|
|
||||||
import * as echarts from "echarts";
|
import * as echarts from "echarts";
|
||||||
|
|
||||||
// 接收 props
|
// 接收 props
|
||||||
|
|
|
@ -115,11 +115,11 @@
|
||||||
import CenterRight2 from "./components/centerRight2/index.vue";
|
import CenterRight2 from "./components/centerRight2/index.vue";
|
||||||
|
|
||||||
// 未修改的组件
|
// 未修改的组件
|
||||||
import CenterLeft1 from "./components/centerLeft1/index.vue";
|
// import CenterLeft1 from "./components/centerLeft1/index.vue";
|
||||||
import CenterLeft2 from "./components/centerLeft2/index.vue";
|
// import CenterLeft2 from "./components/centerLeft2/index.vue";
|
||||||
import Center from "./components/center/index.vue";
|
// import Center from "./components/center/index.vue";
|
||||||
import CenterRight1 from "./components/centerRight1/index.vue";
|
// import CenterRight1 from "./components/centerRight1/index.vue";
|
||||||
import BottomRight from "./components/bottomRight/index.vue";
|
// import BottomRight from "./components/bottomRight/index.vue";
|
||||||
|
|
||||||
// * 颜色
|
// * 颜色
|
||||||
const decorationColors = ["#568aea", "#000000"];
|
const decorationColors = ["#568aea", "#000000"];
|
||||||
|
|
Loading…
Reference in New Issue