mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-05 07:03:01 +08:00
feat: 修改demo和readme
This commit is contained in:
parent
fa0d25ace9
commit
de62f8a9b4
@ -19,11 +19,9 @@
|
|||||||
如果你觉得该项目有给你带来帮助,方便了你的日常开发,可以请作者喝一杯 ☕ 支持持续的迭代
|
如果你觉得该项目有给你带来帮助,方便了你的日常开发,可以请作者喝一杯 ☕ 支持持续的迭代
|
||||||
|
|
||||||
<table >
|
<table >
|
||||||
<tr style="text-align:center">
|
<tr align="center">
|
||||||
<td>WechatPay</td>
|
<td>WechatPay</td>
|
||||||
<td>
|
<td>AliPay</td>
|
||||||
AliPay
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr style="text-align:center">
|
<tr style="text-align:center">
|
||||||
<td> <img src="https://cdn.jsdelivr.net/gh/fonghehe/picture/contribute/wechatPay.jpeg" width="256" /></td>
|
<td> <img src="https://cdn.jsdelivr.net/gh/fonghehe/picture/contribute/wechatPay.jpeg" width="256" /></td>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<section>
|
<section>
|
||||||
<span class="title">varlet</span>
|
<span class="title">varlet</span>
|
||||||
<var-space :size="[10, 10]">
|
<var-space :size="[10, 10]" class="space">
|
||||||
<var-button>demo</var-button><var-button type="primary">主要按钮</var-button>
|
<var-button>demo</var-button><var-button type="primary">主要按钮</var-button>
|
||||||
<var-button type="info">信息按钮</var-button>
|
<var-button type="info">信息按钮</var-button>
|
||||||
<var-button type="success">成功按钮</var-button>
|
<var-button type="success">成功按钮</var-button>
|
||||||
@ -48,11 +48,20 @@
|
|||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
&:nth-child(2) {
|
&:nth-child(n) {
|
||||||
.title {
|
.title {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
&:first-child {
|
||||||
|
.title {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
::v-deep(.var-space) {
|
||||||
|
margin-bottom: 10px !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.demo {
|
.demo {
|
||||||
> :nth-child(n) {
|
> :nth-child(n) {
|
||||||
|
7
types/components.d.ts
vendored
7
types/components.d.ts
vendored
@ -7,6 +7,13 @@ export {};
|
|||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
declare module '@vue/runtime-core' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
|
NutButton: typeof import('@nutui/nutui')['Button'];
|
||||||
|
NutCell: typeof import('@nutui/nutui')['Cell'];
|
||||||
|
NutCellGroup: typeof import('@nutui/nutui')['CellGroup'];
|
||||||
|
NutIcon: typeof import('@nutui/nutui')['Icon'];
|
||||||
|
NutNavbar: typeof import('@nutui/nutui')['Navbar'];
|
||||||
|
NutTabbar: typeof import('@nutui/nutui')['Tabbar'];
|
||||||
|
NutTabbarItem: typeof import('@nutui/nutui')['TabbarItem'];
|
||||||
RouterLink: typeof import('vue-router')['RouterLink'];
|
RouterLink: typeof import('vue-router')['RouterLink'];
|
||||||
RouterView: typeof import('vue-router')['RouterView'];
|
RouterView: typeof import('vue-router')['RouterView'];
|
||||||
TitleBar: typeof import('./../src/components/TitleBar/index.vue')['default'];
|
TitleBar: typeof import('./../src/components/TitleBar/index.vue')['default'];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user