Vue 'export default' vs 'new Vue'

vue.jsVue ComponentVue Cli

vue.js Problem Overview


I just installed Vue and have been following some tutorials to create a project using the vue-cli webpack template. When it creates the component, I notice it binds our data inside of the following:

export default {
    name: 'app',
    data: []
}

Whereas in other tutorials I see data being bound from:

new Vue({
    el: '#app',
    data: []
)}

What is the difference, and why does it seem like the syntax between the two is different? I'm having trouble getting the 'new Vue' code to work from inside the

vue.js Solutions


Solution 1 - vue.js

When you declare:

new Vue({
	el: '#app',
	data () {
	  return {}
	}
)}

That is typically your root Vue instance that the rest of the application descends from. This hangs off the root element declared in an html document, for example:

<html>
  ...
  <body>
	<div id="app"></div>
  </body>
</html>

The other syntax is declaring a component which can be registered and reused later. For example, if you create a single file component like:

// my-component.js
export default {
	name: 'my-component',
	data () {
	  return {}
	}
}

You can later import this and use it like:

// another-component.js
<template>
  <my-component></my-component>
</template>
<script>
  import myComponent from 'my-component'
  export default {
	components: {
	  myComponent
	}
	data () {
	  return {}
	}
	...
  }
</script>

Also, be sure to declare your data properties as functions, otherwise they are not going to be reactive.

Solution 2 - vue.js

export default is used to create local registration for Vue component.

Here is a great article that explain more about components https://frontendsociety.com/why-you-shouldnt-use-vue-component-ff019fbcac2e

Solution 3 - vue.js

The first case (export default {...}) is ES2015 syntax for making some object definition available for use.

The second case (new Vue (...)) is standard syntax for instantiating an object that has been defined.

The first will be used in JS to bootstrap Vue, while either can be used to build up components and templates.

See https://vuejs.org/v2/guide/components-registration.html for more details.

Solution 4 - vue.js

Whenever you use

export someobject

and someobject is

{
 "prop1":"Property1",
 "prop2":"Property2",
}

the above you can import anywhere using import or module.js and there you can use someobject. This is not a restriction that someobject will be an object only it can be a function too, a class or an object.

When you say

new Object()

like you said

new Vue({
  el: '#app',
  data: []
)}

Here you are initiating an object of class Vue.

I hope my answer explains your query in general and more explicitly.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionrockzombie2View Question on Stackoverflow
Solution 1 - vue.jsuser320487View Answer on Stackoverflow
Solution 2 - vue.jsatrichkovView Answer on Stackoverflow
Solution 3 - vue.jsShellumView Answer on Stackoverflow
Solution 4 - vue.jsDHRUV GUPTAView Answer on Stackoverflow