A small problem with using element-ui form elements in vue?

clipboard.png
how do I set the default value for this el-input?

Mar.13,2021

data () {

form:{
    token:"123"
}

}
set this way.


form.token='abc'


see more examples on the official website: https://jsfiddle.net/api/post.

<el-form-item label="">
    <el-input v-model="formLabelAlign.name"></el-input>
  </el-form-item>
data() {
      return {
        labelPosition: 'right',
        formLabelAlign: {
          name: '111',
          region: '',
          type: ''
        }
      };
    }
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3c312-e843.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3c312-e843.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?