選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

table-render.js 152 B

4年前
12345678910111213
  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. })