Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Parts of the .Vue File

.Vue file allows all the components to exist in one file.

Template Section

<template>
	<p>
    My name is {{name}}
    <p>
</template>

Script Section

<script>
	module.export={
		data(){
		return {
			name:kmsmind
			}
		}
	}
</script>

Style Section

<style scoped>
	p{ font-size: 1em}
</style>