— Component—

1. Vue Component (.vue)

https://cdn-images-1.medium.com/max/1600/1*lh0Jhn8V7wP6YJsyy6ZMjg.png

2. component life cycle

https://cdn-images-1.medium.com/max/1600/1*tnSXRrpLBYmfHnIagITlcg.png

example code

export default {
	created () {
		console.log('I was born here')  
	},
	beforeDestroy () {    
		console.log('This is my last word')  
	}
}

3. component options