mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 19:05:55 +02:00
18 lines
349 B
Vue
18 lines
349 B
Vue
<template>
|
|
<div class="home">
|
|
<img alt="Vue logo" src="../assets/img/logo.png">
|
|
<HelloWorld msg="Welcome to Your Vue.js App"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
import HelloWorld from '@/components/HelloWorld.vue'
|
|
|
|
export default {
|
|
name: 'Home',
|
|
components: {
|
|
HelloWorld
|
|
}
|
|
}
|
|
</script>
|