Make Text Editable/ReadOnly Based on Input using Vue Js
I am trying to achieve something where in a given input I make the string editable or non editable(readonly) based on the context of the text in vue js.
For example :
I have a text: My Name is $John Doe$
Now my vue js code should iterate the string and the text between $ can be editable.
HTML:
<template>
<textarea cols="10" rows="10" disabled> makeTextEditableByCondition</textarea>
<input type="text" v-model="editText">
</template>
<script>
export default {
data()
q : "My name is $John Doe$ from NYC,
editText: null,
disabled: true
filters:{
makeTextEditableByCondition(text)
let splittedText = text.split("$");
let this.editText = splittedText[1]
splittedText.splice(1,1)
return splittedText.join(" ")
</script>
But It's still making the process complicated and I am not achieveing proper output.
Any help will be hightly appreciated
javascript vue.js vuejs2
add a comment |
I am trying to achieve something where in a given input I make the string editable or non editable(readonly) based on the context of the text in vue js.
For example :
I have a text: My Name is $John Doe$
Now my vue js code should iterate the string and the text between $ can be editable.
HTML:
<template>
<textarea cols="10" rows="10" disabled> makeTextEditableByCondition</textarea>
<input type="text" v-model="editText">
</template>
<script>
export default {
data()
q : "My name is $John Doe$ from NYC,
editText: null,
disabled: true
filters:improve this question
add a comment "
... Filters should be pure functions and
should not be dependent on this context. If you need this you should
use a computed property or just a method e.g. https://github.com/vuejs/vue/issues/5998
Here a basic solution with computed :
<div id="app">
<textarea cols="10" rows="10" disabled> qComputed </textarea>
<input type="text" v-model="editText">
</div>
new Vue(
el: "#app",
data:
q: "My name is $John Doe$ from NYC",
editText: null,
disabled: true
,
computed:
qComputed()
let splittedText = this.q.split('$')
splittedText[1] = this.editText
return splittedText.join` `
)
https://jsfiddle.net/jupg4ysz/
answered Nov 13 '18 at 6:57
SephyreSephyre
394
394
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274288%2fmake-text-editable-readonly-based-on-input-using-vue-js%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown