-
Notifications
You must be signed in to change notification settings - Fork 823
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work for surveyjs/survey-creator#4435: implement loading indicator in…
… Vue
- Loading branch information
Showing
3 changed files
with
105 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<template> | ||
<div class="sd-loading-indicator"> | ||
<sv-svg-icon :iconName="'icon-loading'" size="'auto'"></sv-svg-icon> | ||
</div> | ||
</template> | ||
<script lang="ts"> | ||
import { Component } from 'vue-property-decorator'; | ||
import Vue from 'vue'; | ||
@Component | ||
export class LoadingIndicatorComponent extends Vue {} | ||
Vue.component("sv-loading-indicator", LoadingIndicatorComponent); | ||
export default LoadingIndicatorComponent; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters