Skip to content

Commit

Permalink
prod versions of vue
Browse files Browse the repository at this point in the history
  • Loading branch information
techwebb committed Apr 6, 2019
1 parent 3687446 commit 4d0b31a
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="main.css" rel="stylesheet">
Expand All @@ -30,16 +30,8 @@
const app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!',
apiResponse: '',
todos: [
{id:'123', 'text':'Lorem, ipsum dolor sit amet consectetur adipisicing elit. Doloribus ullam qui autem. Qui obcaecati adipisci ut mollitia debitis eaque, corrupti aspernatur hic, dolorum rerum cum. Voluptatem deleniti aliquid et nostrum.', created:+new Date(), completed:null},
{id:'234', 'text':'Get ye flask', 'created': + new Date(), 'completed':null},
{id:'345', 'text':'Get ye flaskk', 'created': + new Date(), 'completed':null},
{id:'456', 'text':'Go north', 'created': + new Date(), 'completed':null},
{id:'567', 'text':'Go West', 'created': + new Date(), 'completed':null},
{id:'678', 'text':'Climb tree', 'created': + new Date(), 'completed':null},
]
todos: []
},
mounted(){
this.fetchAll();
Expand Down

0 comments on commit 4d0b31a

Please sign in to comment.