[Vuejs]-Vue js put all text into a json file and import it

1👍

Taking a quick glance at your code:

file: this.json,

should be like below, ‘this’ refers to the Vue instance

file: json,

Your json should look like below ideally (without the []), so you can do this.file[user] (otherwise, because it’s an array, you’ll have to do this.file[0][user]).

{
    "welkom": "Welcome I will help you to answer your questions. If you want more info type 'help'.",
    "help": "Working...",
    "how do you login": "If you are on the 'Homepage' you see on the top a 'Login' button click on it, sign in with your email and password and you logged in.",
    "how do you register": "1. Click on 'login' on the navbar. 2. On the right side you see a 'SIGN UP' button click on the button and you can register.",
    "add internship": "1. You need a account and you need to be logged in.' + '<br>' +'2. When you logged in you see above your email on the right side you see 'Add internship' ' +'click on it.' + '<br>' +'3. Then you see some empty field you need to fill with your company information ' +'4. You can see how it is on the 'Preview design' and if everthing is good click on 'Add internship'.",
    "edit a internship": "1. Go to your 'internship page'. Their you see a edit button if you click on it you can edit ' + 'your internship information."
}

Leave a comment