Guest User

Untitled

a guest
Jan 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. db.Sample.findAll().then(samples => {
  2. const data = {
  3. response: JSON.parse(JSON.stringify(samples))
  4. };
  5. const vueOptions = {
  6. head: {
  7. title: 'Sample'
  8. }
  9. };
  10. res.renderVue('database/samples', data, vueOptions);
  11. });
Add Comment
Please, Sign In to add comment