51 lines
1.1 KiB
Vue
51 lines
1.1 KiB
Vue
<template>
|
|
<h1>{{ msg }}</h1>
|
|
|
|
<div class="card">
|
|
<button type="button" @click="count++">count is {{ count }}</button>
|
|
<p>
|
|
Edit
|
|
<code>components/HelloWorld.vue</code> to test HMR
|
|
</p>
|
|
</div>
|
|
|
|
<p>
|
|
Check out
|
|
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
|
|
>create-vue</a
|
|
>, the official Vue + Vite starter
|
|
</p>
|
|
<p>
|
|
Learn more about IDE Support for Vue in the
|
|
<a
|
|
href="https://vuejs.org/guide/scaling-up/tooling.html#ide-support"
|
|
target="_blank"
|
|
>Vue Docs Scaling up Guide</a
|
|
>.
|
|
</p>
|
|
<p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
|
|
<el-button type="primary">21321312</el-button>
|
|
<t-button disabled loading>确定</t-button>
|
|
<t-button variant="dashed" ghost>幽灵按钮</t-button>
|
|
<icon name="cps-icon-home-sheep" url="https://tdesign.gtimg.com/icon/default-demo/index.js" size="2em" />
|
|
|
|
123
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { Icon } from 'tdesign-icons-vue-next';
|
|
|
|
defineProps({
|
|
msg: String,
|
|
})
|
|
|
|
const count = ref(0)
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.read-the-docs {
|
|
color: #888;
|
|
}
|
|
</style>
|