npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vue3-custome-btn

v1.0.0

Published

這是一個 Vue.js 按鈕元件,內建載入中的旋轉圖示與可自訂的圖示設計。 透過 spinner 狀態自動在載入圖示與按鈕標籤/圖示之間切換,提供流暢的使用者體驗。 元件特色包括:

Readme

vue3-custome-btn

這是一個 Vue.js 按鈕元件,內建載入中的旋轉圖示與可自訂的圖示設計。 透過 spinner 狀態自動在載入圖示與按鈕標籤/圖示之間切換,提供流暢的使用者體驗。 元件特色包括:

  • 動態圖示:可設定預設圖示(icon)與載入圖示(iconSpinner),支援 FontAwesome 或其他圖示類別。
  • 按鈕樣式:透過 btnClass 屬性輕鬆套用額外樣式,方便進行主題設計。
  • 禁用狀態:按鈕在載入中(spinner)或設為禁用(disabled)時自動進入不可用狀態。
  • 平滑過渡:內建 CSS 過渡效果,提供精緻的 UI 互動感受。
  • 此元件非常適合用於需要載入回饋的操作,例如表單提交或 API 呼叫。

範例

安裝

環境

vue: ">=3.5.13"
node: ">=12.0.0"

安裝方式

npm install vue3-custome-btn

解決安裝衝突

如果專案包含 ESLint,安裝本套件時可能會遇到依賴衝突。 可使用以下方法進行安裝處理:

npm install vue3-custome-btn --legacy-peer-deps

vue2版本

如果想要安裝vue2版本可前往: vue2-btn

使用方式

<script setup lang="ts">
import 'font-awesome/css/font-awesome.min.css'; // 用於模擬Icon呈現
import Button from 'vue3-custome-btn'
import { ref } from 'vue'

// 模擬按鈕過渡變化
let demoDsiabledButton=ref(true)
let spinner = ref(false)
let exportSpinner = ref(false)
let diabledSpinner = ref(false)
const demoDisabledTestClick= () => {
    diabledSpinner.value = true
    setTimeout(() => {
        diabledSpinner.value = false
    }, 1500)
}

const demoButtonTestClick = () => {
    spinner.value = true
    setTimeout(() => {
        spinner.value = false
    }, 1500)
}

const demoButtonExportClick = () => {
    exportSpinner.value = true
    setTimeout(() => {
        exportSpinner.value = false
    }, 1500)
}
</script>

<template>
  <main>
    <Button
      name="無法點選"
      btnClass="btn-primary mr-4"
      icon="fa fa-exclamation-circle"
      :disabled="demoDsiabledButton"
    />
    <Button @click="demoButtonTestClick"
      btnClass="btn-primary mr-4"
      icon="fa fa-search"
      :spinner="spinner"
    />
    <Button @click="demoButtonExportClick"
      btnClass="btn-primary mr-4"
      name="匯出"
      iconSpinner="fa fa-circle-o-notch fa-spin"
      :spinner="exportSpinner"
    />
  </main>
</template>

屬性

| 參數 | 類型 | 描述 | | -------- | -------- | -------- | | disabled | Boolean | 禁用按鈕狀態, 預設:false | | spinner | Boolean | 平滑過渡, 預設:false | | name | String | 按鈕名稱, 預設:空值 | | icon | String | 按鈕icon, 預設:空值 | | iconSpinner | String | 平滑過渡 class 名稱, 預設:使用fontawesome 的 fa fa-spinner fa-spin | | btnClass | String | 按鈕 class 名稱, 預設:空值|

版本歷程

  • 1.0.0 第一次發布

License

MIT