TypeScript exports is not defined

后端 未结 6 1662
攒了一身酷
攒了一身酷 2020-12-13 08:45

I\'m trying to use export and import but it not working I get an error

Here is my code HTML :




    <         


        
6条回答
  •  春和景丽
    2020-12-13 09:26

    This worked for me:

    my-enum.ts

    const MyEnum = {
    'test': 456,
    'Default': 123
    }
    

    Component.ts

    import * as MyEnum from 'my-enum';
    

提交回复
热议问题