Skip to content

Please also consider 3rd party support. #1168

Answered by Mister-Hope
racktime asked this question in Q&A
Discussion options

You must be logged in to vote

Here is a possible solution:

::: demo

```html
<div id="app" />
```

```js
window.Vue.use(window.xxx); // xxx is the global name of your package

const root = document.querySelector('#app');

(new window.Vue.component('yyy')()).$mount(root) // yyy is the component name you want to use.
```

```json
{
  "jsLib": [
    // vue cdn link and your package cdn link here
  ]
}
```

:::

And this is what I am talking about: Writing some code which can work on the client side.

BTW: Your first and only "technology support" ends

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by Mister-Hope
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants