bradstewart / electron-boilerplate-vue

Boilerplate application for Electron runtime
724 stars 94 forks source link

strict or stiff? #56

Open Noah-mm-x opened 7 years ago

Noah-mm-x commented 7 years ago

<script> export default { data () { return { msg: 'haha' } } } </script> This code is work

but the code <script> export default { data () { return { msg : 'haha' } } } </script> is not work

just add a space and not work anymore?

jsgv commented 7 years ago

@mfx55 Did you check the linter? If the linter does not like something, it will not recompile.