mirror of
https://github.com/aoaostar/toolbox.git
synced 2026-01-05 03:26:19 +00:00
23 lines
385 B
HTML
23 lines
385 B
HTML
{extend name="layout/plugin_layout" /}
|
|
|
|
{block name="title"}{$plugin.title} - {$app.title}{/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}
|