Guest User

Untitled

a guest
Feb 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. data: () => ({
  2. page: {
  3. language: "",
  4. background: "",
  5. content: {
  6. title: "",
  7. age: {
  8. male: ["......."],
  9. female: ["...."]
  10. }
  11. }
  12. ...and more complex
  13. }
  14.  
  15. data: () => ({
  16. page: new Page();
  17. })
  18.  
  19. class Page() {
  20. language, background, content properties...
  21. }
  22. class Content() {
  23. title, age properties...
  24. }
  25. class Age() {
  26. male, female properties...
  27. }
Add Comment
Please, Sign In to add comment