Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2022-06-23 10:58:50 +0300
committerJoas Schilling <coding@schilljs.com>2022-08-31 09:15:37 +0300
commitcc453b0c555094485efb88afd63d37b4d55142e2 (patch)
tree1fc5efd4af2d78e5088f141959c8de6038072b2f /src/components
parentbb67c6f9a0ab0a0c14c9e37a72799cd44fc6d68e (diff)
Add InputVue component
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/InputVue.vue53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/components/InputVue.vue b/src/components/InputVue.vue
new file mode 100644
index 000000000..6cb09c63b
--- /dev/null
+++ b/src/components/InputVue.vue
@@ -0,0 +1,53 @@
+<!--
+ - @copyright Copyright (c) 2022, Marco Ambrosini <marcoambrosini@pm.me>
+ -
+ - @author Marco Ambrosini <marcoambrosini@pm.me>
+ -
+ - @license GNU AGPL version 3 or any later version
+ -
+ - This program is free software: you can redistribute it and/or modify
+ - it under the terms of the GNU Affero General Public License as
+ - published by the Free Software Foundation, either version 3 of the
+ - License, or (at your option) any later version.
+ -
+ - This program is distributed in the hope that it will be useful,
+ - but WITHOUT ANY WARRANTY; without even the implied warranty of
+ - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ - GNU Affero General Public License for more details.
+ -
+ - You should have received a copy of the GNU Affero General Public License
+ - along with this program. If not, see <http://www.gnu.org/licenses/>.
+ -
+ -->
+
+<template>
+ <input class="input-vue"
+ type="text"
+ :value="value"
+ @input="handleInput">
+</template>
+
+<script>
+export default {
+ name: 'InputVue',
+ props: {
+ value: {
+ type: String,
+ required: true,
+ },
+ },
+ methods: {
+ handleInput(event) {
+ this.$emit('update:value', event.target.value)
+ },
+ },
+}
+</script>
+
+ <style lang="scss" scoped>
+.input-vue {
+ width: 100%;
+ border-radius: var(--border-radius-large);
+ padding-left: 16px;
+ }
+ </style>