mirror of
https://github.com/tenrok/vue-context.git
synced 2026-06-22 20:10:32 +03:00
Add styles to menu, fix issue with menu positioning, update package.json.
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
@click="close"
|
@click="close"
|
||||||
@contextmenu.capture.prevent
|
@contextmenu.capture.prevent
|
||||||
>
|
>
|
||||||
<slot :user-data="userData"></slot>
|
<slot :userData="userData"></slot>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -18,10 +18,10 @@
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
show: false,
|
|
||||||
top: null,
|
top: null,
|
||||||
left: null,
|
left: null,
|
||||||
userData: null
|
userData: null,
|
||||||
|
show: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -39,10 +39,10 @@
|
|||||||
* Close the menu.
|
* Close the menu.
|
||||||
*/
|
*/
|
||||||
close() {
|
close() {
|
||||||
this.show = false;
|
|
||||||
this.top = null;
|
this.top = null;
|
||||||
this.left = null;
|
this.left = null;
|
||||||
this.userData = null;
|
this.userData = null;
|
||||||
|
this.show = false;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -55,12 +55,13 @@
|
|||||||
this.userData = userData;
|
this.userData = userData;
|
||||||
|
|
||||||
let top = event.clientY,
|
let top = event.clientY,
|
||||||
left = event.pageX;
|
left = event.clientX;
|
||||||
|
|
||||||
|
this.show = true;
|
||||||
|
|
||||||
Vue.nextTick(() => {
|
Vue.nextTick(() => {
|
||||||
this.$el.focus();
|
this.setMenu(top, left);
|
||||||
this.setMenu(top, left);
|
this.$el.focus();
|
||||||
this.show = true;
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -88,3 +89,48 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
$blue600: #1e88e5;
|
||||||
|
$gray74: #bdbdbd;
|
||||||
|
$gray93: #ededed;
|
||||||
|
$gray98: #fafafa;
|
||||||
|
|
||||||
|
.v-context {
|
||||||
|
background: $gray98;
|
||||||
|
border: 1px solid $gray74;
|
||||||
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
position: fixed;
|
||||||
|
width: 250px;
|
||||||
|
z-index: 99999;
|
||||||
|
|
||||||
|
& ul {
|
||||||
|
list-style: none;
|
||||||
|
padding-left: 0;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 600;
|
||||||
|
|
||||||
|
& li {
|
||||||
|
margin: 0;
|
||||||
|
border-bottom: $gray93;
|
||||||
|
padding: 10px 35px;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $blue600;
|
||||||
|
color: $gray98;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
+21
-2
@@ -1,10 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "vue-context",
|
"name": "vue-context",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "A simple vue context menu.",
|
"description": "A simple vue context menu component.",
|
||||||
"main": "index.vue",
|
"main": "index.vue",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"dev": "npm run development",
|
||||||
|
"development": "cross-env NODE_ENV=development webpack --progress",
|
||||||
|
"watch": "npm run development -- --watch",
|
||||||
|
"prod": "npm run production",
|
||||||
|
"production": "cross-env NODE_ENV=production webpack --progress"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"vue",
|
"vue",
|
||||||
@@ -16,5 +20,20 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^2.4.2"
|
"vue": "^2.4.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-cli": "^6.26.0",
|
||||||
|
"babel-core": "^6.26.0",
|
||||||
|
"babel-loader": "^7.1.1",
|
||||||
|
"babel-preset-es2015": "^6.24.1",
|
||||||
|
"cross-env": "^5.0.5",
|
||||||
|
"css-loader": "^0.28.5",
|
||||||
|
"extract-text-webpack-plugin": "^3.0.0",
|
||||||
|
"node-sass": "^4.5.3",
|
||||||
|
"sass-loader": "^6.0.6",
|
||||||
|
"style-loader": "^0.18.2",
|
||||||
|
"vue-loader": "^13.0.4",
|
||||||
|
"vue-template-compiler": "^2.4.2",
|
||||||
|
"webpack": "^3.5.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user