mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
17 lines
194 B
Vue
17 lines
194 B
Vue
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
text: "Hello World",
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<p>{{ text }}</p>
|
|
<input v-model="text" />
|
|
</div>
|
|
</template>
|