* add vuex, cleanup client directory and create example components

* disale sample unit test

* disable import for non existing file

* correct regexp for unit tests, add simple test to avoid error, add babel-polyfill for Vuex

* add line wrongly removed, update regexp
This commit is contained in:
Matteo Pagliazzi
2016-09-20 18:58:02 +02:00
committed by GitHub
parent 381bea1e94
commit 2f626c7875
17 changed files with 116 additions and 87 deletions

View File

@@ -0,0 +1,13 @@
<template lang="pug">
p {{ msg }}
</template>
<script>
export default {
data () {
return {
msg: 'You\'re on the Home page!',
};
},
};
</script>