mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-23 12:14:22 +08:00
22 lines
613 B
Vue
22 lines
613 B
Vue
<script setup>
|
|
/*
|
|
=========================================================
|
|
* Vue Material Kit 2 - v2.0.1
|
|
=========================================================
|
|
|
|
* Product Page: https://www.creative-tim.com/product/vue-material-kit
|
|
* Copyright 2023 Creative Tim (https://www.creative-tim.com)
|
|
|
|
Coded by www.creative-tim.com
|
|
|
|
=========================================================
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*/
|
|
import { RouterView } from "vue-router";
|
|
</script>
|
|
|
|
<template>
|
|
<router-view />
|
|
</template>
|