Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <script type="text/javascript">
  2. const app = new Vue({
  3. el: '#app',
  4. data: {
  5. items: []
  6. },
  7. created: function () {
  8. fetch('test.json')
  9. .then(resp => resp.json())
  10. .then(items => {
  11. this.items = [].concat.apply([], items);
  12. })
  13. }
  14. });
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement