Skip to content

Commit 614b6fa

Browse files
authoredSep 15, 2017
comp(MdSnackbar): add snackbar component (#19)
* comp(MdSnackbar): initial files for snackbar * comp(MdSnackbar): start creation of snackbar * test(MdSnackbar): fix broken tests * fix(MdPortal): remove md-portal class to keep the dom clean * test(MdSnackbar): fix broken tests * style: fix alignment of script tags * comp(MdSnackbar): create snackbar * test: fix all broken test, warnings and unhandled exceptions * test: remove variable
1 parent 5a45616 commit 614b6fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+2214
-1887
lines changed
 

‎.babelrc

-11
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,6 @@
1313
"plugins": [
1414
"syntax-dynamic-import"
1515
],
16-
"env": {
17-
"test": {
18-
"presets": [
19-
"es2015",
20-
"stage-3"
21-
],
22-
"plugins": [
23-
"transform-runtime"
24-
]
25-
}
26-
},
2716
"ignore": [
2817
"dist/*.js"
2918
]

‎docs/app/App.vue

+19-19
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,29 @@
1313
</template>
1414

1515
<script>
16-
import { mapState } from 'vuex'
17-
import MainHeader from './template/MainHeader'
18-
import MainNav from './template/MainNav'
19-
import MainFooter from './template/MainFooter'
16+
import { mapState } from 'vuex'
17+
import MainHeader from './template/MainHeader'
18+
import MainNav from './template/MainNav'
19+
import MainFooter from './template/MainFooter'
2020
21-
export default {
22-
name: 'App',
23-
components: {
24-
MainHeader,
25-
MainNav,
26-
MainFooter
27-
},
28-
computed: {
29-
...mapState({
30-
isSplash: 'splashPage'
31-
}),
32-
containerClass () {
33-
return {
34-
splash: this.isSplash
21+
export default {
22+
name: 'App',
23+
components: {
24+
MainHeader,
25+
MainNav,
26+
MainFooter
27+
},
28+
computed: {
29+
...mapState({
30+
isSplash: 'splashPage'
31+
}),
32+
containerClass () {
33+
return {
34+
splash: this.isSplash
35+
}
3536
}
3637
}
3738
}
38-
}
3939
</script>
4040

4141
<style lang="scss">

0 commit comments

Comments
 (0)