Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Teixeira committed May 18, 2022
1 parent 2aef20b commit 4bb233e
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 36 deletions.
Binary file added src/images/chickhand.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/chickhand_poulet.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/vozit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/vozitel.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 1 addition & 28 deletions src/views/Competences.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
<strong>Portuguais: Comprehension orale</strong>
<br>
</v-flex>
<v-flex xs12 sm12 md4 lg5 xl5 class="mx-2 pt-4"></v-flex>
<div class="mt-4 pt-2">
<v-btn
@click="downloadFile()"
target="_blank"
color="green"
dark
Expand All @@ -69,30 +69,3 @@
</v-layout>
</template>

<script>
import axios from 'axios';
export default {
methods: {
downloadFile() {
axios({
url: 'http://192.168.46.24/Teixeira_Leo.pdf', // download file link goes here
method: 'GET',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
responseType: 'blob',
}).then((res) => {
var FILE = window.URL.createObjectURL(new Blob([res.data]));
var docUrl = document.createElement('x');
docUrl.href = FILE;
docUrl.setAttribute('download', 'Teixeira_Leo.pdf');
document.body.appendChild(docUrl);
docUrl.click();
});
},
}
}
</script>
<style >
</style>

5 changes: 1 addition & 4 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@
</h3>
<div>
<p>
Je m'appelle Léo Teixeira, j'ai 18 ans et je suis actuellement en 1er année de BTS SIO à Angers.
Mes passions sont le sport, les jeux video, la lecture et l'informatique.
J'ai choisi ce BTS parceque l'informatique est une de mes passions.
J'adore découvrir de nouvelles technologies, les apprivoiser et surtout j'adore dévelloper.
Je m'appelle Léo Teixeira, j'ai 18 ans et je suis actuellement en 1re année de BTS SIO à Angers. Mes passions sont le sport, les jeux vidéo, la lecture et l'informatique. J'ai choisi ce BTS parce que l'informatique est une de mes passions. J'adore découvrir de nouvelles technologies, les apprivoiser et surtout, j'adore développer.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/views/Portfolio/Flutter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
{
dialog: false,
title: "SoftPhone",
poster: "https://i.imgur.com/QEnmqcE.png"
poster: "../../images/vozit.png"
}
]
};
Expand Down
2 changes: 1 addition & 1 deletion src/views/Portfolio/Kotlin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
{
dialog: false,
title: "ChickHand",
poster: require('./../../images/android.png')
poster: require('./../../images/chickhand_poulet.jpg')
},
]
};
Expand Down
2 changes: 1 addition & 1 deletion src/views/Portfolio/projet_flutter/Softphone.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-layout column justify-center wrap class="mt-2 pt-2">
<div style="text-align:center; margin: auto">
<img
src="../../../images/pendu.jpg"
src="../../../images/vozitel.jpg"
style="height: 25rem"
height="320"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/views/Portfolio/projet_kotlin/ChickHand.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-layout column justify-center wrap class="mt-2 pt-2">
<div style="text-align:center; margin: auto">
<img
src="../../../images/android.png"
src="../../../images/chickhand.jpg"
style="height: 25rem"
height="320"
/>
Expand Down

0 comments on commit 4bb233e

Please sign in to comment.