mirror of
https://github.com/chillzhuang/Saber.git
synced 2024-11-16 23:49:36 +08:00
34 lines
570 B
Vue
34 lines
570 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "app",
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
watch: {},
|
||
|
created() {
|
||
|
this.$notify.success({
|
||
|
title: "前端脚手架讲解文档",
|
||
|
dangerouslyUseHTMLString: true,
|
||
|
message:
|
||
|
'<a target="_blank" href="https://www.kancloud.cn/smallwei/avue">点击查看</a>',
|
||
|
duration: 0,
|
||
|
type: "success"
|
||
|
});
|
||
|
},
|
||
|
methods: {},
|
||
|
computed: {}
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
#app {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
</style>
|