15 lines
366 B
JavaScript
15 lines
366 B
JavaScript
/**
|
|
* When extending the control panel, be sure to uncomment the necessary code for your build process:
|
|
* https://statamic.dev/extending/control-panel
|
|
*/
|
|
|
|
/** Example Fieldtype
|
|
|
|
import ExampleFieldtype from './components/fieldtypes/ExampleFieldtype.vue';
|
|
|
|
Statamic.booting(() => {
|
|
Statamic.$components.register('example-fieldtype', ExampleFieldtype);
|
|
});
|
|
|
|
*/
|