Skip to content

下面我们尝试以主题开发者的视觉,在主题项目开发中使用上面开发的库"库示例-vue"

安装环境库

bash
npm i freelog-runtime@latest -S

在入口文件main.js中使用

js
import { initFreelogApp } from "freelog-runtime";

// 初始化
initFreelogApp()

处理库打包时external的依赖

js
import * as Vue from 'vue'

window.Vue = Vue

加载库

tip:freelog平台中的库都需要以异步的方式使用;

例如: 在main.js中加载这个库并注册为全局组件

js
// 获取实例
const instance = window.FreelogLibrary
const getUrlsv = await instance.getLibraryEntryUrls("cumins/vue-component-002")
const resb = await instance.loadLibraryJs(getUrlsv.jsEntryUrl, getUrlsv.metaJson)
console.log("主题中 cumins/vue-component-002", getUrlsv.version, resb);
instance.loadLibraryCss(getUrlsv.cssEntryUrl)
app.component("Mittle", resb.default)

使用库

js
<template>
  <Mittle msg="cumins/vue-component-002 => 1.0.0"></Mittle>
</template>