mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-10 00:25:13 +00:00
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>
|