Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <el-table :data="tableData" stripe border>
  2. <el-table-column width="170" prop="id"></el-table-column>
  3. <el-table-column width="170">
  4. <template slot-scope="scope">
  5. <!-- -->
  6. </template>
  7. </el-table-column>
  8.  
  9. </el-table>
  10.  
  11. tableData: [
  12. {
  13. "id":1,
  14. "nested": [{"name": "mike"}, {"name": "piter"}]
  15. },
  16. {
  17. "id":2,
  18. "nested": [{"name": "maria"}, {"name": "anna"}]
  19. },
  20. ]
  21.  
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement