@nanoart wrote:
It is possible to develop Office Addin with Ember, accord to https://dev.office.com/docs/add-ins/word/word-add-ins-programming-overview?product=word.
So far, there is not a working sample developed with Ember. I tried it myself, and stuck at the stage - boot the ember application inside Office.initialize.
In Angular sample, https://dev.office.com/docs/add-ins/develop/add-ins-with-angular2,
There is some piece of code,
import { platformBrowserDynamic } from ‘@angular/platform-browser-dynamic’; import { AppModule } from ‘./app.module’;
Office.initialize = function () { const platform = platformBrowserDynamic(); platform.bootstrapModule(AppModule); };
I wonder how it can be done in Ember?
Many thanks,
Posts: 1
Participants: 1