for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import Vue from 'vue';
import Confetti from '../vue/Confetti.vue';
const vm = new Vue({
vm
el: "#cp-nav-content",
components: {
'confetti': Confetti,
},
data: {
methods: {
mounted() {
}
});
If a function call spawns multiple lines, the coding standard suggests to move the closing parenthesis to a new line:
someFunctionCall( $firstArgument, $secondArgument, $thirdArgument ); // Closing parenthesis on a new line.