17 lines
269 B
HTML
17 lines
269 B
HTML
<!--#
|
|
layout("/layouts/platform.html"){
|
|
#-->
|
|
<div id="app" v-cloak>
|
|
<el-alert
|
|
title="对不起,您没有权限访问该页面。"
|
|
type="error">
|
|
</el-alert>
|
|
</div>
|
|
<script>
|
|
new Vue({
|
|
el: "#app"
|
|
});
|
|
</script>
|
|
|
|
<!--#}#-->
|