/learning-notes

to record what i learned before

Primary LanguageHTML

home heroText tagline heroImage actions footer
true
未知领域
探索,发现,记录
/home.jpg
text link type
在线地址
primary
text link type
进入查看
/工具/Git常用命令.html
default
Hello CXY
<script setup>
import { ref } from "vue";

const msg = ref("Hello World!");
</script>

<template>
  <h1>{{ msg }}</h1>
  <input v-model="msg" />
</template>