JosephusPaye / Keen-UI

A lightweight Vue.js UI library with a simple API, inspired by Google's Material Design.
https://josephuspaye.github.io/Keen-UI/
MIT License
4.1k stars 438 forks source link

keen-ui.js:8252 [UiRippleInk]: Trigger element not found. #534

Closed NovikovRoman closed 2 years ago

NovikovRoman commented 2 years ago

keen-ui: v1.3.2

<ui-button v-text="$store.state.fullname"></ui-button>

Throws an error and then outputs the full name.

JosephusPaye commented 2 years ago

Hi, the issue here is the use of v-text on UiButton. Try this instead:

<ui-button>{{ $store.state.fullname }}</ui-button>