mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-04 08:01:39 +08:00
67 lines
2.3 KiB
HTML
67 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><%= title; %></title>
|
|
<%- include("./component/header.html"); %>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/gridjs/dist/theme/mermaid.min.css" rel="stylesheet" />
|
|
<script src="https://cdn.jsdelivr.net/npm/gridjs/dist/gridjs.umd.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1><%= title %></h1>
|
|
|
|
<template>
|
|
<el-row>
|
|
<el-button>Default</el-button>
|
|
<el-button type="primary">Primary</el-button>
|
|
<el-button type="success">Success</el-button>
|
|
<el-button type="info">Info</el-button>
|
|
<el-button type="warning">Warning</el-button>
|
|
<el-button type="danger">Danger</el-button>
|
|
<el-button>中文</el-button>
|
|
</el-row>
|
|
|
|
<el-row>
|
|
<el-button plain>Plain</el-button>
|
|
<el-button type="primary" plain>Primary</el-button>
|
|
<el-button type="success" plain>Success</el-button>
|
|
<el-button type="info" plain>Info</el-button>
|
|
<el-button type="warning" plain>Warning</el-button>
|
|
<el-button type="danger" plain>Danger</el-button>
|
|
</el-row>
|
|
|
|
<el-row>
|
|
<el-button round>Round</el-button>
|
|
<el-button type="primary" round>Primary</el-button>
|
|
<el-button type="success" round>Success</el-button>
|
|
<el-button type="info" round>Info</el-button>
|
|
<el-button type="warning" round>Warning</el-button>
|
|
<el-button type="danger" round>Danger</el-button>
|
|
</el-row>
|
|
|
|
<el-row>
|
|
<el-button :icon="Search" circle></el-button>
|
|
<el-button type="primary" :icon="Edit" circle></el-button>
|
|
<el-button type="success" :icon="Check" circle></el-button>
|
|
<el-button type="info" :icon="Message" circle></el-button>
|
|
<el-button type="warning" :icon="Star" circle></el-button>
|
|
<el-button type="danger" :icon="Delete" circle></el-button>
|
|
</el-row>
|
|
</template>
|
|
<script type="module">
|
|
import {
|
|
Search,
|
|
Edit,
|
|
Check,
|
|
Message,
|
|
Star,
|
|
Delete,
|
|
} from 'element' //from '@element-plus/icons-vue'
|
|
</script>
|
|
|
|
<%- include("./component/footer.html"); %>
|
|
</body>
|
|
</html> |