Files
ZY-Player/src/views/Mini.vue
2020-04-18 00:27:36 +08:00

15 lines
217 B
Vue

<template>
<div class="mini">
<h1>This is an small page</h1>
<p>lalala</p>
</div>
</template>
<script>
export default {
name: 'mini',
created () {
console.log(window.location.href)
}
}
</script>