diff --git a/src/AppDemoActions.vue b/src/AppDemoActions.vue index f7250bf23..eb245a137 100644 --- a/src/AppDemoActions.vue +++ b/src/AppDemoActions.vue @@ -6,6 +6,11 @@ +
@@ -46,6 +51,12 @@ export default { scrollToDocs() { document.getElementById('app-doc').scrollIntoView({behavior: 'smooth'}); }, + viewOnFigma() { + if (this.$appState.darkTheme) + window.open('https://www.figma.com/file/LJBqVfMpK8xY6KR2KIc8RK/Preview-%7C-Dark-%7C-PrimeOne-2022-%7C-1.0.0?node-id=806%3A36648', '_blank'); + else + window.open('https://www.figma.com/file/c3BuENd8nGcyPmn7ADieee/Preview-%7C-PrimeOne-2022-%7C-1.0.0?node-id=806%3A36648', '_blank'); + }, viewOnGitHub() { EventBus.emit('view-github'); }