|
@@ -7,23 +7,25 @@
|
|
|
Write something about yourself to be displayed on your user page
|
|
|
</p>
|
|
|
<fancy-textarea
|
|
|
- placeholder='About me'
|
|
|
+ placeholder='About me description'
|
|
|
v-model='description.value'
|
|
|
:error='description.error'
|
|
|
type='password'
|
|
|
- ></fancy-input>
|
|
|
- <button class='button button--green'>Save</button>
|
|
|
+ ></fancy-textarea>
|
|
|
+ <loading-button class='button button--green'>Save description</loading-button>
|
|
|
</p>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import FancyTextarea from '../FancyTextarea'
|
|
|
+ import LoadingButton from '../LoadingButton'
|
|
|
|
|
|
export default {
|
|
|
name: 'settingsGeneral',
|
|
|
components: {
|
|
|
- FancyTextarea
|
|
|
+ FancyTextarea,
|
|
|
+ LoadingButton
|
|
|
},
|
|
|
data () {
|
|
|
return {
|