Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript">
- const app = new Vue({
- el: '#app',
- data: {
- items: []
- },
- created: function () {
- fetch('test.json')
- .then(resp => resp.json())
- .then(items => {
- this.items = [].concat.apply([], items);
- })
- }
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement