import { defineComponent, createVNode, createTextVNode } from "vue";
var button = "";
var FButton = defineComponent({
  name: "FButton",
  emits: [],
  setup() {
    return () => {
      return createVNode("button", {
        "class": "button"
      }, [createTextVNode("this is `f-button`")]);
    };
  }
});
const FButtonInstall = {
  title: "FButton \u6309\u94AE",
  install(app) {
    app.component(FButton.name, FButton);
  }
};
const installs = [FButtonInstall];
var index = {
  version: "0.0.1",
  install(app) {
    installs.forEach((p) => app.use(p));
  }
};
export { FButton, index as default };
