Fill in the blank component based on Vue.js.(基于 Vue.js 的填空组件。)
实现下面这种填空效果的组件:
我是______________,喜欢_____、_____和_____。
npm:
npm install vue-fill-in-the-blank
Yarn:
yarn add vue-fill-in-the-blank
<template>
<div>
我是
<vue-fill-in-the-blank>{{' '.repeat(20)}}</vue-fill-in-the-blank>,爱好是
<vue-fill-in-the-blank>{{' '.repeat(20)}}</vue-fill-in-the-blank>
</div>
</template>
<script>
import VueFillInTheBlank from 'vue-fill-in-the-blank';
export default {
components: {
VueFillInTheBlank
},
data() {
return {}
}
}
</script>
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!