标签:code script charset nbsp rip png idg har set
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>测试</title> <script type="module" src="index.js"></script> </head> <body> </body> </html>
import {cruiser} from ‘./toyato.js‘; import {discovery} from ‘./land-rover.js‘; import {tire} from ‘./tire.js‘; console.log(`轮胎使用厂家数量: ${tire.count}`);
import {tire} from ‘./tire.js‘; tire.count++; export let cruiser = { name : ‘Land Cruiser‘ };
import {tire} from ‘./tire.js‘; tire.count++; export let discovery = { name : ‘Land Rover Discovery‘ };
// 导出一个轮胎对象 export let tire = { name : ‘BRIDGESTONE‘, count : 0 };
标签:code script charset nbsp rip png idg har set
原文地址:https://www.cnblogs.com/sea-breeze/p/9106241.html