-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from baozjj/feat-vitepress
feat: 文件结构调整,useDraggable优化
- Loading branch information
Showing
25 changed files
with
231 additions
and
82 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
docs/.vitepress/cache/deps/_metadata.json → src/.vitepress/cache/deps/_metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
const Element = [ | ||
{ text: 'useDraggable', link: '/components/useDraggable/useDraggable.md' }, | ||
] | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "vue compose", | ||
description: "A VitePress Site", | ||
themeConfig: { | ||
nav: [ | ||
{ text: '快速入门', link: '/' }, | ||
{ text: 'API 示例', link: '/api-examples' } | ||
], | ||
|
||
sidebar: [ | ||
{ text: '元素', items: Element } | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/baozjj/vueCompose' } | ||
] | ||
} | ||
}) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
.use-draggable { | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | ||
transition: box-shadow 0.2s ease; | ||
z-index: 999; | ||
} | ||
|
||
.use-dragging { | ||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); | ||
} | ||
user-select: none; | ||
} |
Oops, something went wrong.