mirror of
https://github.com/aoaostar/toolbox.git
synced 2026-01-07 04:28:33 +00:00
使用naive ui重构后台面板
重构用户系统,方便支持更多OAuth认证方式
重构插件系统,方便静态资源的添加
BREAKING CHANGE: 🧨 更改管理员身份认证为用户id
25 lines
468 B
HTML
25 lines
468 B
HTML
{extend name="layout/plugin_layout" /}
|
|
|
|
{block name="title"}{$plugin.title} - {$app.title}{/block}
|
|
|
|
{block name="head"}
|
|
<script src="/{$plugin.alias}/static/app.js"></script>
|
|
{/block}
|
|
{block name="main"}
|
|
<div class="container mx-auto" id="app">
|
|
<div class="card lg:card-side bordered shadow-lg">
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
new Vue({
|
|
el: '#app',
|
|
data: {},
|
|
created() {
|
|
},
|
|
methods: {},
|
|
})
|
|
</script>
|
|
|
|
{/block}
|