From 3cd7e8a5436a79fbe58c3892f0369ea12e10fd69 Mon Sep 17 00:00:00 2001 From: Vitalii_Kondratskyi Date: Thu, 29 Aug 2024 13:50:58 +0300 Subject: [PATCH] fix(Tutorial): fixed md; --- _posts/2024-03-01-how-to-use-vue.md | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/_posts/2024-03-01-how-to-use-vue.md b/_posts/2024-03-01-how-to-use-vue.md index 9204402..d89925d 100644 --- a/_posts/2024-03-01-how-to-use-vue.md +++ b/_posts/2024-03-01-how-to-use-vue.md @@ -13,8 +13,9 @@ This guide provides how to use vue.js in project by example how to run task at U ### Step 1: Add HTML components -1. At first need to add button which will be open modal dialog component: -> gitHub - https://github.com/carrier-io/ui_performance/blob/59cb930a273e52b2c2c461fca4381a974d51c825/static/js/components/UiResultInfo.js#L98 +1. At first need to add button which will be open modal dialog component. + +[github source](https://github.com/carrier-io/ui_performance/blob/59cb930a273e52b2c2c461fca4381a974d51c825/static/js/components/UiResultInfo.js#L98) ![guide](/assets/posts_img/guide_vue__1.png) ![guide](/assets/posts_img/guide_vue__2.png) @@ -30,8 +31,9 @@ This guide provides how to use vue.js in project by example how to run task at U ``` 2. At Secondary need to add modal dialog with tasks lists and parameters. this part of the code should be added in the component file where the button above will be located: - ( more details about how modal windows work - https://getbootstrap.com/docs/4.6/components/modal) -> gitHub - https://github.com/carrier-io/ui_performance/blob/59cb930a273e52b2c2c461fca4381a974d51c825/static/js/components/UiResultInfo.js#L242 + [more details about how modal windows work](https://getbootstrap.com/docs/4.6/components/modal) + +[github source](https://github.com/carrier-io/ui_performance/blob/59cb930a273e52b2c2c461fca4381a974d51c825/static/js/components/UiResultInfo.js#L242) ```bash // file: ui_performance/static/js/components/UiResutsInfo.html