21 lines
237 B
Vue
21 lines
237 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script>
|
|
// const Import = httpVueLoader('./Import.vue')
|
|
|
|
module.exports = {
|
|
data: () => ({
|
|
who: 'world'
|
|
}),
|
|
mounted() {
|
|
console.log( 'First Vue SFC try' );
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|