12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <div>
- <img src="/svg/icon-install-chrome.svg" alt class="install_chrome" @click="clickOpenChrome()" />
- </div>
- </template>
- <script>
- export default {
- name: 'install_chrome',
- data() {
- return {
- }
- },
- methods: {
- clickOpenChrome() {
- window.open('https://www.google.com/chrome')
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .install_chrome{
- cursor: pointer;
- }
- </style>
|