first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<template>
<div class="about">
<h1>我的</h1>
</div>
</template>
<style>
</style>

View File

@@ -0,0 +1,31 @@
<script setup>
import { getCurrentInstance,ref, inject, onMounted, reactive, toRefs, computed, watch } from 'vue';
import heComponents from '@/components/header.vue'
import { useRouter } from 'vue-router';
// let { $axios } = getCurrentInstance().proxy
// console.log($axios);
const count = ref(0)
let countClick = () => {
count.value ++
}
let getChildren = (v) => {
console.log(v);
}
onMounted(() => {
console.log("onMounted");
})
</script>
<template>
<div class="home">
<van-button type="primary">主要按钮</van-button>
<!-- <input type="text" v-model="list.name"> -->
<!-- {{ list.name }} -->
<heComponents title="你好这是测试" @fas="getChildren"></heComponents>
<h1 @click="countClick">首页 {{ count }}</h1>
</div>
</template>