Saber/src/App.vue

55 lines
1.3 KiB
Vue
Raw Normal View History

2019-02-14 11:38:09 +08:00
<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>',
2019-02-15 14:33:39 +08:00
duration: 3000,
2019-02-14 11:38:09 +08:00
type: "success"
});
setTimeout(()=>{
this.$notify.success({
title: "bladex授权",
dangerouslyUseHTMLString: true,
message:
'感谢您对bladex的支持本系统后端采用了bladex开发如果想使用bladex的授权请<a target="_blank" href="https://bladex.vip/#/vip">点击授权</a>',
duration: 3000,
type: "success"
});
},500);
setTimeout(()=>{
this.$notify.success({
title: "avuex授权",
dangerouslyUseHTMLString: true,
message:
'感谢您对avuex的支持本系统后端采用了avuex开发如果想使用avuex的授权请<a target="_blank" href="https://avuex.avue.top/#/vip">点击授权</a>',
duration: 3000,
type: "success"
});
},500);
2019-02-14 11:38:09 +08:00
},
methods: {},
computed: {}
};
</script>
<style lang="scss">
#app {
width: 100%;
height: 100%;
overflow: hidden;
}
</style>