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.
|
|
1 week ago | |
|---|---|---|
| .. | ||
| .vuepress | 1 week ago | |
| guide | 1 week ago | |
| README.md | 1 week ago | |
README.md
Hello fake-art
Vue2组件展示
::: demo 此处放置代码示例的描述信息,支持 Markdown 语法,描述信息只支持单行
<template>
<div class="red-center-text">
<FakeButton>{{ message }}</FakeButton>
<input v-model="message" placeholder="Input something..."/>
</div>
</template>
<script>
export default {
data() {
return {
message: 'Hello Vue'
}
}
}
</script>
<style>
.red-center-text {
color: #ff7875;
text-align: center;
}
</style>
:::