vue-spinner-component icon indicating copy to clipboard operation
vue-spinner-component copied to clipboard

title

Open ranwawa opened this issue 7 years ago • 1 comments
trafficstars

in the first, my eglish is poor.

can't show title under the icon?

need to do that

ranwawa avatar Sep 14 '18 08:09 ranwawa

@ranwawa

Just do something like this and style it accordingly with CSS:

        <div class="spinner" v-show="loading">
            <spinner
                    :status="loading"
                    :color="spinner.color"
                    :size="spinner.size"
                    :depth="spinner.depth"
                    :rotation="spinner.rotation"
                    :speed="spinner.speed">
            </spinner>
            <div class="spinner-title">
                Title here
            </div>
        </div>

clnt avatar Oct 17 '18 11:10 clnt