hi @ksuhara, I had the same problem and eventually ended up finding a solution that worked for me in Nuxt. I followed the doc and imported like that:
import * as THREE from 'three'
import { TrackballControls } from 'three/examples/jsm/controls/TrackballControls.js'
Then make sure you transpile three in your nuxt.config.js like so:
build: {
transpile: [
'three'
],
}
That should do the trick!