您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

14 行
152 B

  1. import Vue from 'vue'
  2. Vue.mixin({
  3. methods: {
  4. tableNameRender(h, {
  5. row,
  6. col
  7. }) {
  8. console.log(row)
  9. return h('view', row.name)
  10. }
  11. }
  12. })