formatted file

This commit is contained in:
sidharth 2022-01-25 14:55:30 +05:30
parent e550b17649
commit d68b7135bf
3 changed files with 20 additions and 23 deletions

2
.gitignore vendored
View File

@ -2,6 +2,7 @@
node_modules node_modules
/dist /dist
# local env files # local env files
.env.local .env.local
.env.*.local .env.*.local
@ -10,6 +11,7 @@ node_modules
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
git_info.json
# Editor directories and files # Editor directories and files
.idea .idea

View File

@ -1 +1 @@
{"branch_name":"beta","last_commit_date":"2022-01-25T07:23:33.000Z","last_commit_author":"sidharth","last_commit_hash":"c3b1962bf6bb86f156d4aa412143c19cc6fffac5"} {"branch_name":"beta","last_commit_date":"2022-01-25T08:33:21.000Z","last_commit_author":"rakesh","last_commit_hash":"e550b1764950541e872cc218b3c7043fa3e07611"}

View File

@ -37,28 +37,23 @@ export default {
}; };
}, },
computed: { computed: {
userId: { userId() {
get: function () {
return this.$store.state.accountOne.one.id; return this.$store.state.accountOne.one.id;
}, },
}, },
watch: {
userId() {
this.url =
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
this.userId;
}, },
watch:
{
userId()
{
this.url= "https://orderexplorer.crane.com//OrderExplorer/?account=" +this.userId ;
}
}, },
mounted() mounted() {
{
if (this.userId) if (this.userId)
{ this.url =
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
this.url= "https://orderexplorer.crane.com//OrderExplorer/?account=" +this.userId ; this.userId;
} },
}
}; };
</script> </script>