You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
327 B
21 lines
327 B
1 year ago
|
<script setup>
|
||
|
import {ref} from 'vue'
|
||
|
|
||
|
const count = ref(0)
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<h1>Demo</h1>
|
||
|
<div>
|
||
|
<el-text size="large" style="font-size: xxx-large">{{ count }}</el-text>
|
||
|
<br>
|
||
|
<el-button type="primary" @click="count++">count++</el-button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
h1 {
|
||
|
color: red;
|
||
|
}
|
||
|
</style>
|