14 lines
198 B
Vue
14 lines
198 B
Vue
<template>
|
|
<div>
|
|
<h1>Example Component</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
ready() {
|
|
console.log('Component ready.')
|
|
}
|
|
}
|
|
</script>
|