add missing semicolons
This commit is contained in:
parent
8b82069a03
commit
62fd6afed3
3 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,7 @@ export default {
|
|||
components: {
|
||||
HelloWorld
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
|
|
@ -36,7 +36,7 @@ export default {
|
|||
props: {
|
||||
msg: String
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
import Vue from 'vue';
|
||||
import App from './App.vue';
|
||||
|
||||
Vue.config.productionTip = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue