deemix-webui/public/js/app/components/App.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>