forked from element-plus/element-plus
-
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.
- Code done - Awaiting test cases
- Loading branch information
Showing
14 changed files
with
386 additions
and
97 deletions.
There are no files selected for viewing
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 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
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,15 @@ | ||
import { mount } from '@vue/test-utils' | ||
import Tooltip from '../src/index.vue' | ||
|
||
const AXIOM = 'Rem is the best girl' | ||
|
||
describe('Tooltip.vue', () => { | ||
test('render test', () => { | ||
const wrapper = mount(Tooltip, { | ||
slots: { | ||
default: AXIOM, | ||
}, | ||
}) | ||
expect(wrapper.text()).toEqual(AXIOM) | ||
}) | ||
}) |
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,143 @@ | ||
<template> | ||
<div class="box"> | ||
<div class="top"> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Top Left prompts info" | ||
placement="top-start" | ||
> | ||
<el-button>top-start</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Top Center prompts info" | ||
placement="top" | ||
> | ||
<el-button>top</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Top Right prompts info" | ||
placement="top-end" | ||
> | ||
<el-button>top-end</el-button> | ||
</el-tooltip> | ||
</div> | ||
<div class="left"> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Left Top prompts info" | ||
placement="left-start" | ||
> | ||
<el-button>left-start</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Left Center prompts info" | ||
placement="left" | ||
> | ||
<el-button>left</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Left Bottom prompts info" | ||
placement="left-end" | ||
> | ||
<el-button>left-end</el-button> | ||
</el-tooltip> | ||
</div> | ||
|
||
<div class="right"> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Right Top prompts info" | ||
placement="right-start" | ||
> | ||
<el-button>right-start</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Right Center prompts info" | ||
placement="right" | ||
> | ||
<el-button>right</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Right Bottom prompts info" | ||
placement="right-end" | ||
> | ||
<el-button>right-end</el-button> | ||
</el-tooltip> | ||
</div> | ||
<div class="bottom"> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Bottom Left prompts info" | ||
placement="bottom-start" | ||
> | ||
<el-button>bottom-start</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Bottom Center prompts info" | ||
placement="bottom" | ||
> | ||
<el-button>bottom</el-button> | ||
</el-tooltip> | ||
<el-tooltip | ||
class="item" | ||
effect="dark" | ||
content="Bottom Right prompts info" | ||
placement="bottom-end" | ||
> | ||
<el-button>bottom-end</el-button> | ||
</el-tooltip> | ||
</div> | ||
</div> | ||
</template> | ||
<style> | ||
.box { | ||
width: 400px; | ||
padding-left: 25%; | ||
padding-top: 200px; | ||
} | ||
.box .top { | ||
text-align: center; | ||
} | ||
.box .left { | ||
float: left; | ||
width: 110px; | ||
} | ||
.box .right { | ||
float: right; | ||
width: 110px; | ||
} | ||
.box .bottom { | ||
clear: both; | ||
text-align: center; | ||
} | ||
.box .item { | ||
margin: 4px; | ||
} | ||
.box .left .el-tooltip__popper, | ||
.box .right .el-tooltip__popper { | ||
padding: 8px 10px; | ||
} | ||
.box .el-button { | ||
width: 110px; | ||
} | ||
</style> |
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,5 @@ | ||
export default { | ||
title: 'Tooltip', | ||
} | ||
|
||
export { default as Basic } from './basic.vue' |
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,5 @@ | ||
import { App } from 'vue' | ||
import Tooltip from './src/index.vue' | ||
export default (app: App): void => { | ||
app.component(Tooltip.name, Tooltip) | ||
} |
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,12 @@ | ||
{ | ||
"name": "@element-plus/tooltip", | ||
"version": "0.0.0", | ||
"main": "dist/index.js", | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"vue": "^3.0.0-rc.6" | ||
}, | ||
"devDependencies": { | ||
"@vue/test-utils": "^2.0.0-beta.0" | ||
} | ||
} |
Oops, something went wrong.