-
I have some shortcuts defined on a vue page. Like this
```vue
```
Whenever I navigate away from that page, I get the following error message in the console.
In firefox:
`[Vue warn]: Error i…
-
### Suggested feature
Tooltips should be allowed on dropdown buttons.
This is very important when the dropdown button only displays an icon:
https://github.com/user-attachments/assets/b09dd2b…
-
### Describe the bug
I'm trying to use toast component inside the custom directive. But, I get following error,
![image](https://github.com/primefaces/primevue/assets/872762/2895da1d-9004-4e85-b14…
-
Vue.js 是一个基于 `MVVM` 模型的 web 库。通过双向数据绑定连接View和Model层。实际的 DOM 操作被封装成 `Directives` 和 `Filters`。
### 基本定义
每个Vue对象的实例是一个ViewModel。创建方式:
```
var vue = new Vue({
el: view,
data: model
});
```
其中 `…
-
### Vue 1.x
```javascript
Vue.directive('clickOutside', {
bind () {
this.onClick = (event) => {
if (this.el.contains(event.target)) return false
if (this.expression) this.vm[…
-
I have the following vue component:
```vue
{{ cart.totalGrossPrice }}
import gql from 'graphql-tag'
export default {
apollo: {
cart: {
query: gql`
q…
-
Hi, I'm using vue for a single page to resolve one simple problem.
The problem is that all the examples are using imports, and I cannot use that.
I need to use the plugin without using the impor…
-
The "resize" listener added on window here:
https://github.com/JonathanDn/vue-dropdown/blob/03ba5754c370fa257277fb7ca1d7ce6250a4f179/dropdown.vue#L96
is never removed. It leads to memory leak.
Also…
-
here's a way to use in Vue 3 in the mean time if anyone needs this:
```
app.directive('hotkey', {
beforeMount: VueHotkey.directive.bind,
updated: VueHotkey.directive.componentUpdated,
unm…
-
### Describe the problem
https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionstart_event
When using the input method, the user has not formally entered text and the value change ev…