re-organized js files, first attempt of adding Vue SFC

This commit is contained in:
Roberto Tonino
2020-04-16 19:57:34 +02:00
parent 7824aef125
commit dfc30468cf
16 changed files with 875 additions and 322 deletions

View File

@@ -0,0 +1,20 @@
<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>