|
@@ -1,21 +1,41 @@
|
|
|
<template>
|
|
|
- <Demo13/>
|
|
|
- <!-- <Demo1 />
|
|
|
- <Demo2 />
|
|
|
- <Demo3 />
|
|
|
- <Demo4 />
|
|
|
- <Demo5 />
|
|
|
- <Demo6 />
|
|
|
- <Demo7 />
|
|
|
- <Demo8/>
|
|
|
- <Demo9/>
|
|
|
- <Demo10/>
|
|
|
- <Demo11/>
|
|
|
- <Demo12/>
|
|
|
+ <div>
|
|
|
+ <Demo15/>
|
|
|
+ <!--
|
|
|
+ <Demo1 />
|
|
|
+ <Demo2 />
|
|
|
+ <Demo3 />
|
|
|
+ <Demo4 />
|
|
|
+ <Demo5 />
|
|
|
+ <Demo6 />
|
|
|
+ <Demo7 />
|
|
|
+ <Demo8/>
|
|
|
+ <Demo9/>
|
|
|
+ <Demo10/>
|
|
|
+ <Demo11/>
|
|
|
+ <Demo12/>
|
|
|
+ <Demo13/>
|
|
|
-->
|
|
|
+ <!--
|
|
|
+ <div>
|
|
|
+ <h4 ref="today">哈哈哈</h4>
|
|
|
+ <Demo14 ref='flower' />
|
|
|
+ <button @click="show">展示</button>
|
|
|
+ </div>
|
|
|
+ -->
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts" name="App">
|
|
|
+import { ref } from "vue";
|
|
|
+let today = ref(12);
|
|
|
+
|
|
|
+let flower: any = ref(10);
|
|
|
+
|
|
|
+function show() {
|
|
|
+ console.log(today.value, "flower");
|
|
|
+}
|
|
|
+
|
|
|
// import Demo1 from "./components/Demo1.vue";
|
|
|
// import Demo2 from "./components/Demo2.vue";
|
|
|
// import Demo3 from "./components/Demo3.vue";
|
|
@@ -28,6 +48,8 @@
|
|
|
// import Demo10 from "./components/Demo10.vue";
|
|
|
// import Demo11 from "./components/Demo11.vue";
|
|
|
// import Demo12 from "./components/Demo12.vue";
|
|
|
-import Demo13 from "./components/Demo13.vue";
|
|
|
+// import Demo13 from "./components/Demo13.vue";
|
|
|
+// import Demo14 from "./components/Demo14.vue";
|
|
|
+import Demo15 from "./components/Demo15.vue";
|
|
|
</script>
|
|
|
<style lang="scss" scoped></style>
|