mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
16 lines
176 B
Vue
16 lines
176 B
Vue
<template>
|
|
<div>
|
|
<el-button>{{ value1 }}</el-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value1: 'TEST',
|
|
}
|
|
},
|
|
}
|
|
</script>
|