mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-09 16:15: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>
|