Saber/src/App.vue

51 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: "授权信息",
2019-02-14 11:38:09 +08:00
dangerouslyUseHTMLString: true,
message:
'<p>欢迎使用Saber!</p>' +
'<p>该系统采用BladeX与AvueX开发</p>' +
'<p>若要商用强烈推荐高度定制的商业化框架,具体授权信息请访问如下地址。️</p>' +
'</br>' +
'<p>BladeX 授权地址:<a target="_blank" href="https://bladex.vip/#/vip">点击授权</a></p>' +
2019-08-19 22:32:04 +08:00
'<p>AvueX 授权地址:<a target="_blank" href="https://avuejs.com/vip">点击授权</a></p>',
duration: 20000,
2019-02-14 11:38:09 +08:00
type: "success"
});
setTimeout(()=>{
this.$notify.success({
title: "开发手册",
dangerouslyUseHTMLString: true,
message:
'<p>后端开发手册:<a target="_blank" href="https://www.kancloud.cn/smallchill/blade">点击查看</a></p>'+
2019-09-27 23:54:27 +08:00
'<p>前端开发手册:<a target="_blank" href="https://www.kancloud.cn/smallchill/saber">点击查看</a></p>',
duration: 20000,
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>